You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/healthcare-apis/dicom/update-files.md
+63-10Lines changed: 63 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -103,17 +103,27 @@ For updating the UIDs, new UIDs have to be provided in the change dataset as fol
103
103
```
104
104
3. Use the request below to update the 'SOPInstanceUid' for a specific instance within a series. Note that a single instance is updated at a time, and both the 'studyInstanceUid' and 'seriesInstanceUid' must be provided along with the current 'sopInstanceUid' and the new value in the changeDataset.
105
105
106
+
```
106
107
{
107
-
"studyInstanceUid": "1.2.3.4",
108
+
"studyInstanceUids": ["1.2.3.4"],
108
109
"seriesInstanceUid": "5.6.7.8",
109
-
"sopInstanceUid": "9.10.11.12",
110
-
"changeDataset": {
111
-
"00080018": {
112
-
"vr": "UI",
113
-
"Value": ["9.10.11.13"]
114
-
}
110
+
"sopInstanceUid": "9.10.11.12",
111
+
"changeDataset": {
112
+
"0020000D": {
113
+
"vr": "UI",
114
+
"Value": ["1.2.3.5"]
115
+
},
116
+
"0020000E": {
117
+
"vr": "UI",
118
+
"Value": ["5.6.7.9"]
119
+
},
120
+
"00080018": {
121
+
"vr": "UI",
122
+
"Value": ["9.10.11.13"]
123
+
}
115
124
}
116
125
}
126
+
```
117
127
118
128
#### Responses
119
129
When a bulk update operation starts successfully, the API returns a `202` status code. The body of the response contains a reference to the operation.
@@ -217,13 +227,12 @@ The [change feed](change-feed-overview.md) records update actions in the same ma
217
227
218
228
## Summary of DICOM UID Update Behavior by Hierarchy Level
219
229
This table outlines how bulk updates behave at different levels of the DICOM hierarchy—Study, Series, and Instance—highlighting when updates are allowed, whether a SOP Instance UID filter is required, how instances are moved, and the resulting impact on the UID hierarchy.
| Update patient demographic attributes only | ✅ | ✅ | ✅ |Not required | No movement | Attributes updated in place; original UID hierarchy preserved. |
225
234
| Update Study Instance UID | ✅ | ❌ | ❌ | ❌ | Study → New Study | All instances in study get new Study UID; series and instance UIDs remain unless explicitly changed. |
226
-
| Update Series Instance UID |✅ | ✅ | ❌ | Not required | Series → New Series | All instances in series get new Series UID; Study UID remains unless updated; SOP Instance UID unchanged. |
235
+
| Update Series Instance UID | ❌| ✅ | ❌ | Not required | Series → New Series | All instances in series get new Series UID; Study UID remains unless updated; SOP Instance UID unchanged. |
227
236
| Update SOP Instance UID | ❌ | ❌ | ✅ | Required | Instance → New Instance | Only the filtered SOP Instance(s) are updated; new SOP Instance UID assigned; Study/Series UID preserved. |
228
237
| Update Study & Series UIDs | ✅ | ✅ | ❌ | Not required | Study → New Study → Series → New Series | Hierarchy updated; all instances in series adopt new UIDs. |
229
238
| Update Study, Series, and SOP Instance UIDs | ✅ | ✅ | ✅ | Required | Study → New Study → Series → New Series → Instance → New Instance | Complete hierarchy updated with filtered SOP instance selection where applicable. |
@@ -294,4 +303,48 @@ The UID `1.3.6.1.4.1.311.129` is a registered under [Microsoft OID arc](https://
294
303
| Accession Number | (0008,0050) | A RIS generated number that identifies the order for the Study |
295
304
| Study Description | (0008,1030) | Institution-generated description or classification of the Study (component) performed |
| Instance Number | (0020,0013)| A number that identifies the instance |
337
+
| Acquisition Date | (0008,0022)| The date the acquisition of data that resulted in this image started |
338
+
| Acquisition Time | (0008,0032)| The time the acquisition of data that resulted in this image started |
339
+
| Image Laterality | (0020,0062)| Laterality of (possibly paired) body part examined in the image; Enumerated Values: R (right), L (left), U (unpaired), B (both) |
340
+
| Measurement Laterality | (0024,0113)| The laterality of the measurement |
0 commit comments