DICOM PS3.18 2024e - Web Services |
---|
The DICOM JSON Model follows the Native DICOM Model for XML very closely, so that systems can take advantage of both formats without much retooling. The Media Type for DICOM JSON is application/dicom+json. The default character repertoire shall be UTF-8 / ISO_IR 192.
Multiple results returned in JSON are organized as a single top-level array of JSON objects. This differs from the Native DICOM Model, which returns multiple results as a multi-part collection of singular XML documents.
<?xml version="1.0" encoding="UTF-8" xml:space="preserve" ?> <NativeDicomModel> <DicomAttribute tag="0020000D" vr="UI" keyword="StudyInstanceUID"> <Value number="1">1.2.392.200036.9116.2.2.2.1762893313.1029997326.945873</Value> </DicomAttribute> </NativeDicomModel> … <?xml version="1.0" encoding="UTF-8" xml:space="preserve" ?> <NativeDicomModel> <DicomAttribute tag="0020000D" vr="UI" keyword="StudyInstanceUID"> <Value number="1">1.2.444.200036.9116.2.2.2.1762893313.1029997326.945876</Value> </DicomAttribute> </NativeDicomModel>
DICOM PS3.18 2024e - Web Services |
---|