@@ -218,7 +218,7 @@ lost, it is merely passed as a `Link` header. In summary, all of the flags withi
218218as a GET request to the context broker itself. If no flags are set, a full NGSI-LD response including the `@context` is
219219returned by default, and the payload can be reduced and amended by adding in further restrictions.
220220
221- #### :one: Request:
221+ #### 1️⃣ Request:
222222
223223```console
224224curl -L -X POST 'http://localhost:1026/ngsi-ld/v1/subscriptions/' \
@@ -248,7 +248,7 @@ This second request fires notifications to a different endpoint (URL
248248` notification.endpoint.accept=application/ld+json ` will ensure that the ` @context ` is passed in the body of the
249249notification request and that the payload will consist of the expanded entities.
250250
251- #### : two : Request:
251+ #### 2️⃣ Request:
252252
253253``` console
254254curl -L -X POST 'http://localhost:1026/ngsi-ld/v1/subscriptions/' \
@@ -277,7 +277,7 @@ Subscription details can be read by making a GET request to the `/ngsi-ld/v1/sub
277277actions continue to be mapped to the same HTTP verbs as before. Adding the ` Accept: application/json ` will remove the
278278` @context ` element from the response body.
279279
280- #### : three : Request:
280+ #### 3️⃣ Request:
281281
282282``` console
283283curl -L -X GET 'http://localhost:1026/ngsi-ld/v1/subscriptions/'
@@ -481,7 +481,7 @@ The body of the request is similar to the **NGSI-v2** equivalent with the follow
481481special key which fires a JSON-LD expansion/compaction operation to ensure that the attribute names within the request
482482match the expected ** NGSI-v2** attribute names.
483483
484- #### : four : Request:
484+ #### 4️⃣ Request:
485485
486486``` console
487487curl -iX POST 'http://localhost:1026/ngsi-ld/v1/csourceRegistrations/' \
@@ -525,7 +525,7 @@ curl -iX POST 'http://localhost:1026/ngsi-ld/v1/csourceRegistrations/' \
525525Retrieving the registration details can be made by sending a GET request to the ` /ngsi-ld/v1/csourceRegistrations/ `
526526endpoint, along with an appropriate JSON-LD context in the ` Link ` header and the ` type ` of entity to filter
527527
528- #### : five : Request:
528+ #### 5️⃣ Request:
529529
530530``` console
531531curl -G -iX GET 'http://localhost:1026/ngsi-ld/v1/csourceRegistrations/' \
@@ -580,7 +580,7 @@ returned when an requested entity is requested. For simple registrations, a requ
580580proxied to the registered ` endpoint ` , for partial registrations the ` properties ` and ` relationships ` are added to the
581581existing entity held within the context broker.
582582
583- #### : six : Request:
583+ #### 6️⃣ Request:
584584
585585``` console
586586curl -iX GET 'http://localhost:1026/ngsi-ld/v1/entities/urn:ngsi-ld:Building:store001' \
@@ -677,7 +677,7 @@ in this case a request is merely returning the full `tweets` attribute.
677677
678678The same request is made by the context broker itself when querying for registered attributes
679679
680- #### : seven : Request:
680+ #### 7️⃣ Request:
681681
682682``` console
683683curl -L -X GET 'http://localhost:3000/static/tweets/ngsi-ld/v1/entities/urn:ngsi-ld:Building:store001?attrs=tweets' \
@@ -715,7 +715,7 @@ the response resembles any standard NGSI-LD request.
715715For a read-write interface it is also possible to amend context data by making a PATCH request to the relevant
716716` ngsi-ld/v1/entities/<entity-id>/attrs ` endpoint.
717717
718- #### : eight : Request:
718+ #### 8️⃣ Request:
719719
720720``` console
721721curl -L -X PATCH 'http://localhost:3000/static/tweets/ngsi-ld/v1/entities/urn:ngsi-ld:Building:store001/attrs' \
@@ -733,7 +733,7 @@ curl -L -X PATCH 'http://localhost:3000/static/tweets/ngsi-ld/v1/entities/urn:ng
733733}'
734734```
735735
736- #### : nine : Request:
736+ #### 9️⃣ Request:
737737
738738If the regisitered attribute is requested from the context broker, it returns the _ updated_ values obtained from
739739` http://tutorial:3000/static/tweets/ngsi-ld/v1/entities/urn:ngsi-ld:Building:store001 ` - i.e. the forwarding endpoint.
@@ -771,7 +771,7 @@ The context broker is therefore able to return a complete holistic picture of th
771771
772772### Forwarded Update
773773
774- #### : one :: zero : Request:
774+ #### 1️⃣0️⃣ Request:
775775
776776A PATCH request to the context broker ( either ` ngsi-ld/v1/entities/<entity-id>/ ` or
777777` ngsi-ld/v1/entities/<entity-id>/attrs ` ) will be forwarded to the registered context provider if a registration is
@@ -795,7 +795,7 @@ curl -L -X PATCH 'http://localhost:1026/ngsi-ld/v1/entities/urn:ngsi-ld:Building
795795} '
796796```
797797
798- #### : one :: one : Request:
798+ #### 1️⃣1️⃣ Request:
799799
800800The result of the previous operation can be seen by retrieving the whole entity using a GET request.
801801
0 commit comments