Study query root

There are several attributes that you can use in the study, series, and image levels of a study query.

The following sections describe the search attributes that you can use in the levels of a study query. Search attributes can be specified either as numeric DICOM tags or as descriptive names. Search results that are propagated by the node are always returned containing DICOM numeric tags.

Study level

The study level attributes that can be included in a study query root request are described in the following table.
Attribute name Mandatory DICOM tag
StudyDate No 00080020
StudyTime No 00080030
AccessionNumber No 00080050
ModalitiesInStudy No 00080061
ReferringPhysicianName No 00080090
PatientName No 00100010
PatientID No 00100020
IssuerOfPatientID No 00100021
PatientBirthDate No 00100030
PatientSex No 00100040
StudyID No 00200010
StudyInstanceUID No 0020000D
The following example is a query that uses the descriptive name as the attribute tag.
<DICOM:FindMove xmins:DICOM="http://com.ibm.healthcare/DICOM">
    <QueryRoot>STUDY</QueryRoot>
    <QueryLevel>STUDY</QueryLevel>
    <OperationPriority>NORMAL</OperationPriority>
    <Match>
        <Attribute Tag="PatientName">FEROVIX</Attribute>
        <Attribute Tag="AccessionNumber">1210490</Attribute>
    </Match>
    <Return>
    </Return>
</DICOM:FindMove>
The following example is the same query but using the numeric DICOM tags.
<DICOM:FindMove xmins:DICOM="http://com.ibm.healthcare/DICOM">
    <QueryRoot>STUDY</QueryRoot>
    <QueryLevel>STUDY</QueryLevel>
    <OperationPriority>NORMAL</OperationPriority>
    <Match>
        <Attribute Tag="00100010">FEROVIX</Attribute>
        <Attribute Tag="00080050">1210490</Attribute>
    </Match>
    <Return>
    </Return>
</DICOM:FindMove>
The study level attributes that can be included in a study query root response are described in the following table.
Attribute name DICOM tag
StudyDate 00080020
StudyTime 00080030
AccessionNumber 00080050
StudyID 00200010
StudyInstanceID 0020000D
NumberOfStudyRelatedSeries 00201206
NumberOfStudyRelatedInstances 00201208

Series level

The series level attributes that can be included in a study query root request are described in the following table.
Attribute name Mandatory DICOM tag
StudyInstanceUID Yes 0020000D
Modality No 00080060
SeriesNumber No 00200011
SeriesInstanceUID No 0020000E
The following example is a query that uses the descriptive name as the attribute tag.
<DICOM:FindMove xmins:DICOM="http://com.ibm.healthcare/DICOM">
    <QueryRoot>STUDY</QueryRoot>
    <QueryLevel>SERIES</QueryLevel>
    <OperationPriority>NORMAL</OperationPriority>
    <Match>
        <Attribute Tag="StudyInstanceUID">1.2.840.113745.101000.1008000.37796.6311.5221360</Attribute>
    </Match>
    <Return>
    </Return>
</DICOM:FindMove>

The series level attributes that can be included in a study query root response are described in the following table.
Attribute name DICOM tag
Modality 00080060
SeriesNumber 00200011
SeriesInstanceUID 0020000E
NumberofSeriesRelatedInstances 00201209

Image level

The image level attributes that can be included in a study query root request are described in the following table.
Attribute name Mandatory DICOM tag
SeriesInstanceUID Yes 0020000E
InstanceNumber No 00200013
SOPClassUID No 00080016
SOPInstanceID No 00080018
The following example is a query that uses the descriptive name as the attribute tag.
<DICOM:FindMove xmins:DICOM="http://com.ibm.healthcare/DICOM">
    <QueryRoot>STUDY</QueryRoot>
    <QueryLevel>IMAGE</QueryLevel>
    <OperationPriority>NORMAL</OperationPriority>
    <Match>
        <Attribute Tag="SeriesInstanceUID">1.3.12.2.1107.5.1.4.50146.4.0.2320790629191549</Attribute>
    </Match>
    <Return>
    </Return>
</DICOM:FindMove>

The image level attributes that can be included in a study query root response are described in the following table.
Attribute name DICOM tag
InstanceNumber 00200013
SOPClassUID 00080016
SOPInstanceUID 00080018
Copyright IBM Corporation 2011, 2015Copyright IBM Corporation 2011, 2015.

        
        Last updated
        
        Last updated : 2015-06-25 13:54:26


Reference topicReference topic | Version 4.0.0.0 | ha05032