DICOM PS3.18 2025d - Web Services

B.40 Retrieving A Modality Performed Procedure Step Using JSON Media and Content Type

Here we have two examples, the first returning all available attributes, and the second returning a specified selection of attributes.

B.40.1 Return All Attributes

This example illustrates a request to retrieve an existing modality performed procedure step in JSON returning all attributes. It is a culmination of the previous examples as given in Section B.37, Section B.38 and Section B.39 in which all attributes that have been added are returned here.

GET /radiology/modality-performed-procedure-steps/1.2.250.1.59.40211.12345678.987654?includefield=all HTTP/1.1
Host: www.hospital-stmarco
Accept: application/dicom+json
A successful response to the request will be:
HTTP/1.1 200 OK
Content-Length: 2191
Content-Type: application/dicom+json; charset=utf-8
…
[
  {
    …
    "00100010": { "vr": "PN", "Value": [{ "Alphabetic": "Doe^Sally" }] },
    "00400242": { "vr": "SH", "Value": ["CTSCANNER"] },
    "00400252": { "vr": "CS", "Value": ["COMPLETED"] },
    "00400253": { "vr": "SH", "Value": ["1.2.250.1.59.40211.12345678.987654"] },
    …,
    "00400270": { "vr": "SQ", "Value":
      [
        {
          "00080050": { "vr": "SH", "Value": ["1"] },
          "0020000D": { "vr": "UI", "Value": ["1.2.250.1.59.40211..30000008090412501082300000004"] },
          "00400007": { "vr": "LO", "Value": ["Specials^04a_HeadCTA"] },
          "00400009": { "vr": "SH", "Value": ["PS-ID-23"] },
          "00401001": { "vr": "SH", "Value": ["P-ID-22"] },
           …
        },
        …
      ]
    },
    …,
    "00400340": { "vr": "SQ", "Value":
      [
        {
          "0008103E": { "vr": "LO", "Value": ["Head 1.50 Hr64 ax"] },
          "00081050": { "vr": "PN", "Value": [{ "Alphabetic": "House^Gregory" }] },
          "00081140": { "vr": "SQ", "Value":
          [
            {
              "00081150": { "vr": "UI", "Value": ["1.2.840.10008.5.1.4.1.1.2"] },
              "00081155": { "vr": "UI", "Value": ["1.2.250.1.59.40211.197132.3000002004071832284030000520"] },
              …
            },
            {
               "00081150": { "vr": "UI", "Value": ["1.2.840.10008.5.1.4.1.1.2"] },
               "00081155": { "vr": "UI", "Value": ["1.2.250.1.59.40211.197132.3000002004071832284030000521"] },
               …
            },
            …
          ]
        },
        …,
        "00181030": { "vr": "LO", "Value": ["Special^99a_HeadCTA"] },
        "0020000E": { "vr": "UI", "Value": ["1.2.250.1.59.40211.197132.30000020040718322840300000007"] },
        …
        },
        …
      ]
    },
    …
  }
]

The Attributes are according to Section F.8 in PS3.4 .

DICOM PS3.18 2025d - Web Services