Skip to content

Commit

Permalink
DICOM PDQ Service: Optionally perform the query on Study instead on P…
Browse files Browse the repository at this point in the history
…atient Level #1716
  • Loading branch information
gunterze committed Dec 3, 2018
1 parent 95a0611 commit ef444cf
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Apache Directory Studio on November 30, 2018 12:44:41 PM
# Generated by Apache Directory Studio on December 3, 2018 12:15:09 PM

# SCHEMA "DCM4CHEE-ARCHIVE"
dn: cn=dcm4chee-archive, ou=schema
Expand Down Expand Up @@ -3942,6 +3942,7 @@ m-must: dcmPDQServiceID
m-must: dcmURI
m-may: dicomDescription
m-may: dcmTag
m-may: dcmEntity
m-may: dcmDefaultCharacterSet
m-may: dcmProperty

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1835,6 +1835,7 @@ objectClasses: ( 1.2.40.0.13.1.15.110.4.34 NAME 'dcmPDQService'
MAY (
dicomDescription $
dcmTag $
dcmEntity $
dcmDefaultCharacterSet $
dcmProperty ) )
objectClasses: ( 1.2.40.0.13.1.15.110.4.35 NAME 'hl7PrefetchRule'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2119,6 +2119,7 @@ objectclass ( 1.2.40.0.13.1.15.110.4.34 NAME 'dcmPDQService'
MAY (
dicomDescription $
dcmTag $
dcmEntity $
dcmDefaultCharacterSet $
dcmProperty ) )

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1841,6 +1841,7 @@ olcObjectClasses: ( 1.2.40.0.13.1.15.110.4.34 NAME 'dcmPDQService'
MAY (
dicomDescription $
dcmTag $
dcmEntity $
dcmDefaultCharacterSet $
dcmProperty ) )
olcObjectClasses: ( 1.2.40.0.13.1.15.110.4.35 NAME 'hl7PrefetchRule'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1834,6 +1834,7 @@ olcObjectClasses: ( 1.2.40.0.13.1.15.110.4.34 NAME 'dcmPDQService'
MAY (
dicomDescription $
dcmTag $
dcmEntity $
dcmDefaultCharacterSet $
dcmProperty ) )
olcObjectClasses: ( 1.2.40.0.13.1.15.110.4.35 NAME 'hl7PrefetchRule'
Expand Down
12 changes: 10 additions & 2 deletions dcm4chee-arc-ui2/src/assets/schema/pdqService.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"type": "object",
"required": [
"dcmPDQServiceID",
"dcmURI"
"dcmURI",
"dcmEntity"
],
"properties": {
"dcmPDQServiceID": {
Expand All @@ -31,9 +32,16 @@
},
"format": "dcmTag"
},
"dcmEntity": {
"title": "Query Entity",
"description": "Indicates if the C-FIND SCP is queried for a particular Patient or for Studies of a particular Patient. Only effective for DICOM PDQ Services (URI: pdq-dicom:{AETitle}).",
"type": "string",
"enum": [ "Patient", "Study" ],
"default": "Patient"
},
"dcmDefaultCharacterSet": {
"title": "Default Character Set",
"description": "Value of Specific Character Set (0008,0005) added to Data Sets without Specific Character Set (0008,0005) attribute received from the DICOM Patient Root Query C-FIND SCP. Only effective for DICOM PDQ Services (URI: pdq-dicom:{AETitle})",
"description": "Value of Specific Character Set (0008,0005) added to Data Sets without Specific Character Set (0008,0005) attribute received from the C-FIND SCP. Only effective for DICOM PDQ Services (URI: pdq-dicom:{AETitle}).",
"type": "string",
"format": "dcmCharset"
},
Expand Down

0 comments on commit ef444cf

Please sign in to comment.