Skip to content

Commit 350de03

Browse files
author
Gunjit Chhatwal
committed
added details of wildcard support in UPS-RS (search workitems)
1 parent ab4d317 commit 350de03

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

articles/healthcare-apis/dicom/dicom-services-conformance-statement-v2.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -937,6 +937,7 @@ We support these matching types:
937937
| Range Query | `Scheduled​Procedure​Step​Start​Date​Time` | `{attributeID}={value1}-{value2}`. For date/time values, we support an inclusive range on the tag. This range is mapped to `attributeID >= {value1} AND attributeID <= {value2}`. If `{value1}` isn't specified, all occurrences of dates/times prior to and including `{value2}` is matched. Likewise, if `{value2}` isn't specified, all occurrences of `{value1}` and subsequent dates/times are matched. However, one of these values must be present. `{attributeID}={value1}-` and `{attributeID}=-{value2}` are valid, however, `{attributeID}=-` isn't valid. |
938938
| Exact Match | All supported attributes | `{attributeID}={value1}` |
939939
| Fuzzy Match | `PatientName` | Matches any component of the name that starts with the value. |
940+
| WildCard Match | `PatientID`, <br/> `ReferencedRequestSequence.AccessionNumber`, <br/> `ReferencedRequestSequence.RequestedProcedureID`, <br/> `ProcedureStepState`, <br/> `ScheduledStationNameCodeSequence.CodeValue`, <br/> `ScheduledStationClassCodeSequence.CodeValue`, <br/> `ScheduledStationGeographicLocationCodeSequence.CodeValue` | Following wildcard characters are supported - <br/> `*` - Matches zero or more characters. E.g. - `{attributeID}={val*}` will match "val", "valid", "value" but not "evaluate". <br/> `?` - Matches a single character. E.g. - `{attributeID}={valu?}` will match "value", "valu1" but not "valued" or "valu" |
940941

941942
> [!NOTE]
942943
> Although we don't support full sequence matching, we do support exact match on the attributes listed that are contained in a sequence.

0 commit comments

Comments
 (0)