@@ -178,7 +178,8 @@ git checkout NGSI-v2
178178This command will also import seed data from the previous
179179[ Stock Management example] ( https://github.com/FIWARE/tutorials.Context-Providers ) on startup.
180180
181- > :information_source : ** Note:** If you want to clean up and start over again you can do so with the following command:
181+ > [ !NOTE]
182+ > If you want to clean up and start over again you can do so with the following command:
182183>
183184> ``` console
184185> ./services stop
@@ -210,7 +211,7 @@ frequently so this would be a waste of resources and create a lot of unnecessary
210211The alternative is to create a subscription which will POST a payload to a "well-known" URL whenever a price has
211212changed. A new subscription can be added by making a POST request to the `/v2/subscriptions/` endpoint as shown below:
212213
213- #### :one: Request:
214+ #### 1️⃣ Request:
214215
215216```console
216217curl -iX POST \
@@ -278,7 +279,7 @@ the product prices remain the same - for example apples remain at 0.99€
278279Let's reduce the price of apples to 0.89€. This can't be done programmatically yet, so it has to be done with a curl
279280command as shown:
280281
281- #### : two : Request:
282+ #### 2️⃣ Request:
282283
283284``` console
284285curl -iX PUT \
@@ -328,7 +329,7 @@ The subscription is tested whenever the `shelfCount` of an **InventoryItem** is
328329` "q": "shelfCount<10;refStore==urn:ngsi-ld:Store:001 ` tests that the ` shelfCount ` is below ten and that the item is in
329330store 001. This means that we can set up our business logic so that other stores wont be bothered by notifications.
330331
331- #### : three : Request:
332+ #### 3️⃣ Request:
332333
333334The following command is a low stock notification for Store 001
334335
@@ -354,7 +355,7 @@ curl -iX POST \
354355}'
355356```
356357
357- #### : four : Request:
358+ #### 4️⃣ Request:
358359
359360The following command is a low stock notification for Store 002
360361
@@ -435,7 +436,7 @@ Product entity is altered.
435436The notification section of the body states that a POST request containing all affected entities will be sent to the
436437`http://tutorial:3000/subscription/price-change` endpoint.
437438
438- #### :five: Request:
439+ #### 5️⃣ Request:
439440
440441```console
441442curl -iX POST \
@@ -467,7 +468,7 @@ This example deletes the Subscription with `id=5ae079b86e4f353c5163c939` from th
467468
468469Subscriptions can be deleted by making a DELETE request to the ` /v2/subscriptions/<subscription-id> ` endpoint.
469470
470- #### : six : Request:
471+ #### 6️⃣ Request:
471472
472473``` console
473474curl -X DELETE \
@@ -480,7 +481,7 @@ This example amends an existing subscription with the ID `5ae07c7e6e4f353c5163c9
480481
481482Subscriptions can be updated making a PATCH request to the ` /v2/subscriptions/<subscription-id> ` endpoint.
482483
483- #### : seven : Request:
484+ #### 7️⃣ Request:
484485
485486``` console
486487curl -iX PATCH \
@@ -503,7 +504,7 @@ This example lists all subscriptions by making a GET request to the `/v2/subscri
503504The notification section of each subscription will also include the last time the conditions of the subscription were
504505met, and whether associated the POST action was successful.
505506
506- #### : eight : Request:
507+ #### 8️⃣ Request:
507508
508509``` console
509510curl -X GET \
@@ -519,7 +520,7 @@ subscription were met, and whether associated the POST action was successful.
519520
520521Subscription details can be read by making a GET request to the ` /v2/subscriptions/<subscription-id> ` endpoint.
521522
522- #### : nine : Request:
523+ #### 9️⃣ Request:
523524
524525``` console
525526curl -X GET \
0 commit comments