Skip to content

Commit ec76900

Browse files
PR review fixes
1 parent fb96488 commit ec76900

File tree

5 files changed

+17
-15
lines changed

5 files changed

+17
-15
lines changed

articles/healthcare-apis/dicom/change-feed-overview.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
title: Change feed overview for the DICOM service in Azure Health Data Services
3-
description: Learn how to use the change feed in the DICOM service to access the logs of all the changes that occur in your orgganization's medical imaging data. The change feed allows you to query, process, and act upon the change events in a scalable and efficient way.
3+
description: Learn how to use the change feed in the DICOM service to access the logs of all the changes that occur in your organization's medical imaging data. The change feed allows you to query, process, and act upon the change events in a scalable and efficient way.
44
author: mmitrik
55
ms.service: healthcare-apis
66
ms.subservice: dicom
77
ms.topic: conceptual
8-
ms.date: 1/17/2024
8+
ms.date: 1/18/2024
99
ms.author: mmitrik
1010
---
1111

@@ -48,12 +48,12 @@ Metadata | object | Optionally, the current DICOM metadata if the
4848
State | Description
4949
:------- | :---
5050
current | This instance is the current version.
51-
replaced | This instance has been replaced by a new version.
52-
deleted | This instance has been deleted and is no longer available in the service.
51+
replaced | This instance is replaced with a new version.
52+
deleted | This instance is deleted and is no longer available in the service.
5353

5454
## Change feed
5555

56-
The change feed resource is a collection of events that have occurred within the DICOM server.
56+
The change feed resource is a collection of events that occurred within the DICOM server.
5757

5858
### Version 2
5959

@@ -152,7 +152,7 @@ limit | int | The maximum value of the sequence number relative t
152152
includeMetadata | bool | Indicates whether or not to include the DICOM metadata | `true` | | |
153153

154154
## Latest change feed
155-
The latest change feed resource represents the latest event that has occurred within the DICOM Server.
155+
The latest change feed resource represents the latest event that occurred within the DICOM server.
156156

157157
### Request
158158
```http
@@ -208,15 +208,15 @@ includeMetadata | bool | Indicates whether or not to include the metadata | `tru
208208
2. On some regular polling interval, the application performs the following actions:
209209
* Fetches the latest sequence number from the `/changefeed/latest` endpoint
210210
* Fetches the next set of changes for processing by querying the change feed with the current offset
211-
* For example, if the application has currently processed up to sequence number 15 and it only wants to process at most 5 events at once, then it should use the URL `/changefeed?offset=15&limit=5`
211+
* For example, if the application processed up to sequence number 15 and it only wants to process at most five events at once, then it should use the URL `/changefeed?offset=15&limit=5`
212212
* Processes any entries return by the `/changefeed` resource
213213
* Updates its current sequence number to either:
214214
1. The maximum sequence number returned by the `/changefeed` resource
215215
2. The `offset` + `limit` if no change events were returned from the `/changefeed` resource, but the latest sequence number returned by `/changefeed/latest` is greater than the current sequence number used for `offset`
216216

217217
### Other potential usage patterns
218218

219-
Change feed support is well suited for scenarios that process data based on objects that have changed. For example, it can be used to:
219+
Change feed support is well-suited for scenarios that process data based on objects that are changed. For example, it can be used to:
220220

221221
* Build connected application pipelines like ML that react to change events or schedule executions based on created or deleted instance.
222222
* Extract business analytics insights and metrics, based on changes that occur to your objects.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: mmitrik
66
ms.service: healthcare-apis
77
ms.subservice: dicom
88
ms.topic: reference
9-
ms.date: 1/17/2024
9+
ms.date: 1/18/2024
1010
ms.author: mmitrik
1111
---
1212

@@ -271,7 +271,7 @@ An example response with `Accept` header `application/dicom+json` with a FailedA
271271
| `272` | The store transaction didn't store the instance because of a general failure in processing the operation. |
272272
| `43264` | The DICOM instance failed the validation. |
273273
| `43265` | The provided instance `StudyInstanceUID` didn't match the specified `StudyInstanceUID` in the store request. |
274-
| `45070` | A DICOM instance with the same `StudyInstanceUID`, `SeriesInstanceUID`, and `SopInstanceUID` was already stored stored. If you want to update the contents, delete this instance first. |
274+
| `45070` | A DICOM instance with the same `StudyInstanceUID`, `SeriesInstanceUID`, and `SopInstanceUID` was already stored. If you want to update the contents, delete this instance first. |
275275
| `45071` | A DICOM instance is being created by another process, or the previous attempt to create failed and the cleanup process isn't complete. Delete the instance first before attempting to create again. |
276276

277277
#### Store warning reason codes

articles/healthcare-apis/dicom/pull-dicom-changes-from-change-feed.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: mmitrik
55
ms.service: healthcare-apis
66
ms.subservice: dicom
77
ms.topic: how-to
8-
ms.date: 1/17/2024
8+
ms.date: 1/18/2024
99
ms.author: mmitrik
1010
---
1111

articles/healthcare-apis/dicom/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ items:
4545
href: dicom-configure-azure-rbac.md
4646
- name: Enable audit and diagnostic logging
4747
href: enable-diagnostic-logging.md
48+
- name: Access DICOM Change Feed logs
49+
href: pull-dicom-changes-from-change-feed.md
4850
- name: Import DICOM files
4951
href: import-files.md
5052
- name: Export DICOM files

articles/healthcare-apis/dicom/update-files.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: Update DICOM files in the DICOM service
2+
title: Update files in the DICOM service in Azure Health Data Services
33
description: Learn how to use the bulk update API in Azure Health Data Services to modify DICOM attributes for multiple files in the DICOM service. This article explains the benefits, requirements, and steps of the bulk update operation.
44
author: mmitrik
55
ms.service: healthcare-apis
66
ms.subservice: dicom
77
ms.topic: how-to
8-
ms.date: 10/27/2023
8+
ms.date: 1/18/2024
99
ms.author: mmitrik
1010
---
1111

@@ -164,7 +164,7 @@ Any attributes in the [Patient Identification Module](https://dicom.nema.org/dic
164164
| Patient's Name | (0010,0010) | Patient's full name |
165165
| Patient ID | (0010,0020) | Primary hospital identification number or code for the patient. |
166166
| Other Patient IDs| (0010,1000) | Other identification numbers or codes used to identify the patient.
167-
| Type of Patient ID| (0010,0022) | The type of identifier in this item. Enumerated Values: TEXT RFID BARCODE Note The identifier is coded as a string regardless of the type, not as a binary value.
167+
| Type of Patient ID| (0010,0022) | The type of identifier in this item. Enumerated Values: TEXT RFID BARCODE Note that the identifier is coded as a string regardless of the type, not as a binary value.
168168
| Other Patient Names| (0010,1001) | Other names used to identify the patient.
169169
| Patient's Birth Name| (0010,1005) | Patient's birth name.
170170
| Patient's Mother's Birth Name| (0010,1060) | Birth name of patient's mother.
@@ -197,7 +197,7 @@ Any attributes in the [Patient Identification Module](https://dicom.nema.org/dic
197197
| Patient Species Description | (0010,2201) | The species of the patient. |
198198
| Patient Breed Description | (0010,2292) | The breed of the patient. See Section C.7.1.1.1.1. |
199199
| Breed Registration Number | (0010,2295) | Identification number of a veterinary patient within the registry. |
200-
| Issuer of Patient ID | (0010,0021) | Identifier of the Assigning Authority (system, organization, agency, or department) that issued the Patient ID. ```
200+
| Issuer of Patient ID | (0010,0021) | Identifier of the Assigning Authority (system, organization, agency, or department) that issued the Patient ID.
201201

202202
#### General study module
203203
| Attribute Name | Tag | Description |

0 commit comments

Comments
 (0)