Skip to content

Commit 762923b

Browse files
committed
capitalization issue
1 parent e14f3d8 commit 762923b

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

articles/data-manager-for-agri/how-to-use-events.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,11 @@ Data Manager for Agriculture events allow applications to react to creation, del
2727
Azure Functions, Azure Logic Apps, or even to your own http listener can subscribe to these events. Azure Event Grid provides reliable event delivery to your applications through rich retry policies and dead-lettering.
2828

2929
Here are example scenarios for consuming events in our service:
30-
1. When downloading satellite or weather data or executing jobs, you can use events to respond to changes in job status. You can minimize long polling can and decreasing the number of API calls to the service. You can also get prompt notification of job completion. All our asynchronous ingestion jobs are capable of supporting events. > [!NOTE]
30+
1. When downloading satellite or weather data or executing jobs, you can use events to respond to changes in job status. You can minimize long polling can and decreasing the number of API calls to the service. You can also get prompt notification of job completion. All our asynchronous ingestion jobs are capable of supporting events.
31+
32+
> [!NOTE]
3133
> Events related to ISV solutions flow are not currently supported.
34+
3235
2. If there are modifications to data-plane resources such as party, fields, farms and other similar elements, you can react to changes and you can trigger workflows.
3336

3437
## Filtering events
@@ -38,13 +41,13 @@ For instance, for the PartyChanged event, to receive notifications for changes f
3841

3942
EndsWith- /Party1234
4043
The subject for this event is of the format
41-
``` "/parties/Party1234"```
44+
```"/parties/Party1234"```
4245

4346
Subjects in an event schema provide 'starts with' and 'exact match' filters as well.
4447

4548
Similarly, to filter the same event for a group of party IDs, use the Advanced filter on partyId field in the event data object. In a single subscription, you may add five advanced filters with a limit of 25 values for each key filtered.
4649

47-
To learn more about how to apply filters, see <a href = "https://docs.microsoft.com/azure/event-grid/how-to-filter-events" target = "_blank"> Filter events for Event Grid </a>
50+
To learn more about how to apply filters, see <a href = "https://docs.microsoft.com/azure/event-grid/how-to-filter-events" target = "_blank"> filter events for Event Grid. </a>
4851

4952
## Subscribing to events
5053
You can subscribe to Data Manager for Agriculture events by using Azure portal or Azure Resource Manager client. Each of these provide the user with a set of functionalities. Refer to following resources to know more about each method.
@@ -62,7 +65,7 @@ Applications that handle Data Manager for Agriculture events should follow a few
6265
4. Ignore fields you don't understand. This practice will help keep you resilient to new features that might be added in the future.
6366

6467

65-
### **Available event types**
68+
### Available event types
6669

6770
|Event Name | Description|
6871
|:-----|:----|
@@ -149,7 +152,7 @@ description| string| Textual description of the resource.
149152
name| string| Name to identify resource.
150153
partyId| string| ID of the party it belongs to.
151154

152-
For device Data Model, and Sensor Data Model events, the data object contains following properties:
155+
For device data model, and sensor data model events, the data object contains following properties:
153156

154157
|Property | Type| Description|
155158
|:-----| :----| :----|
@@ -164,7 +167,7 @@ eTag| string| Implements optimistic concurrency.
164167
description| string| Textual description of the resource.
165168
name| string| Name to identify resource.
166169

167-
For Device events, the data object contains following properties:
170+
For device events, the data object contains following properties:
168171

169172
|Property | Type| Description|
170173
|:-----| :----| :----|
@@ -181,7 +184,7 @@ eTag| string| Implements optimistic concurrency.
181184
description| string| Textual description of the resource.
182185
name| string| Name to identify resource.
183186

184-
For Sensor events, the data object contains following properties:
187+
For sensor events, the data object contains following properties:
185188

186189
|Property | Type| Description|
187190
|:-----| :----| :----|
@@ -199,7 +202,7 @@ eTag| string| Implements optimistic concurrency.
199202
description| string| Textual description of the resource.
200203
name| string| Name to identify resource.
201204

202-
For Sensor Mapping events, the data object contains following properties:
205+
For sensor mapping events, the data object contains following properties:
203206

204207
|Property | Type| Description|
205208
|:-----| :----| :----|
@@ -217,7 +220,7 @@ eTag| string| Implements optimistic concurrency.
217220
description| string| Textual description of the resource.
218221
name| string| Name to identify resource.
219222

220-
For Sensor Partner Integration events, the data object contains following properties:
223+
For sensor partner integration events, the data object contains following properties:
221224

222225
|Property | Type| Description|
223226
|:-----| :----| :----|
@@ -250,7 +253,7 @@ Boundary events have the following data object:
250253
|description | string | Textual description of the resource. |
251254
|properties | string | It contains user defined key – value pair. |
252255

253-
Seasonal Field events have the following data object:
256+
Seasonal field events have the following data object:
254257

255258
Property| Type| Description
256259
|:-----| :----| :----|

0 commit comments

Comments
 (0)