@@ -427,7 +427,7 @@ The Stores of the supermarket have been created using the FIWARE
427427` fiware:Building` which expands to `https://uri.fiware.org/ns/data-models%23Building`. It is therefore possible to
428428request all building entities without supplying a known context.
429429
430- # ### :one: Request:
430+ # ### 1️⃣ Request:
431431
432432` ` ` console
433433curl -G -X GET \
@@ -501,7 +501,7 @@ models and `schema.org` respectively.
501501
502502Requesting the **Product** entities can be done by supplying the FQN of the entity `type` in the request as well.
503503
504- # ### :two: Request:
504+ # ### 2️⃣ Request:
505505
506506` ` ` console
507507curl -G -X GET \
@@ -553,7 +553,7 @@ The programmatically the Product model and its attributes are fully described in
553553Requesting the **Shelf** entities can be done by supplying the short of the entity `type` in the request as well,
554554provided the full context has been supplied in the `Link` header.
555555
556- # ### :three: Request:
556+ # ### 3️⃣ Request:
557557
558558` ` ` console
559559curl -G -X GET \
@@ -611,7 +611,7 @@ The programmatically the Shelf model and its attributes are fully described in t
611611Initially each shelf is created with `name`, `maxCapacity` and `location` _Properties_ only. A sample shelf is requested
612612below.
613613
614- # ### :four: Request:
614+ # ### 4️⃣ Request:
615615
616616` ` ` console
617617curl -G -X GET \
@@ -678,7 +678,7 @@ value of object is the URN corresponding to the linked data entity.
678678
679679Note that the relationship is currently unidirectional. **Shelf** :arrow_right : **Building**.
680680
681- # ### :five: Request:
681+ # ### 5️⃣ Request:
682682
683683` ` ` console
684684curl -X POST \
@@ -716,7 +716,7 @@ Having added the additional attributes, it is possible to query for the amended
716716
717717This example returns the context data of the Shelf entity with the `id=urn:ngsi-ld:Shelf:unit001`.
718718
719- # ### :six: Request:
719+ # ### 6️⃣ Request:
720720
721721` ` ` console
722722curl -X GET \
@@ -847,7 +847,7 @@ This example returns the `locatedIn` value associated with a given `Shelf` unit.
847847
848848If the `id` and `type` of a data entity are known, a specific field can be requested by using the `attrs` parameter.
849849
850- # ### :seven: Request:
850+ # ### 7️⃣ Request:
851851
852852` ` ` console
853853curl -G -X GET \
@@ -873,7 +873,7 @@ curl -G -X GET \
873873This example returns the `locatedIn` URNs of all **Shelf** entities found within `urn:ngsi-ld:Building:store001`. This
874874is purely an instance of using the `q` parameter to filter on attribute value
875875
876- # ### :eight: Request:
876+ # ### 8️⃣ Request:
877877
878878` ` ` console
879879curl -G -X GET \
@@ -906,7 +906,7 @@ without additional data. This method is used to add **Shelf** entities as `furni
906906
907907This is the reciprocal relationship to the `locatedIn` attribute on **Shelf**
908908
909- # ### :nine: Request:
909+ # ### 9️⃣ Request:
910910
911911` ` ` console
912912curl -L -X POST 'http://localhost:1026/ngsi-ld/v1/entities/urn:ngsi-ld:Building:store001/attrs' \
@@ -935,7 +935,7 @@ To find all the `furniture` within a **Building**, simply make a request to retr
935935Because the reicprocal relationship already exists, Additional information can be obtained from the **Shelf** entities
936936themselves.
937937
938- # ### :one::zero: Request:
938+ # ### 1️⃣0️⃣ Request:
939939
940940` ` ` console
941941curl -G -X GET \
@@ -966,7 +966,7 @@ complex metadata such as _Properties-of-Properties_ or _Properties-of-Relationsh
966966
967967The **StockOrder** is created as a standard NGSI-LD data entity.
968968
969- # ### :one::one: Request:
969+ # ### 1️⃣1️⃣ Request:
970970
971971` ` ` console
972972curl -X POST \
@@ -1010,7 +1010,7 @@ given product is sold.
10101010
10111011The query `q==orderedProduct="urn:ngsi-ld:Product:001"` is used to filter the entities.
10121012
1013- # ### :one::two: Request:
1013+ # ### 1️⃣2️⃣ Request:
10141014
10151015` ` ` console
10161016curl -G -X GET \
@@ -1043,7 +1043,7 @@ The query below returns an array of stores in which a given product is sold.
10431043
10441044The query `q==requestedFor="urn:ngsi-ld:Building:store001"` is used to filter the entities.
10451045
1046- # ### :one::three: Request:
1046+ # ### 1️⃣3️⃣ Request:
10471047
10481048` ` ` console
10491049curl -G -X GET \
@@ -1076,7 +1076,7 @@ request.
10761076A complete stock order can be obtained by making a standard GET request to the `/ngsi-ld/v1/entities/` endpoint and
10771077adding the appropriate URN.
10781078
1079- # ### :one::four: Request:
1079+ # ### 1️⃣4️⃣ Request:
10801080
10811081` ` ` console
10821082curl -G -X GET \
0 commit comments