From 0aa0899992c943bc8220f63d8c25650be8861ce3 Mon Sep 17 00:00:00 2001 From: Jason Fox Date: Thu, 25 Jul 2024 14:02:52 +0200 Subject: [PATCH] Remove `@context` from response. --- docs/working-with-linked-data.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/docs/working-with-linked-data.md b/docs/working-with-linked-data.md index 9d70430..2007bb9 100644 --- a/docs/working-with-linked-data.md +++ b/docs/working-with-linked-data.md @@ -281,10 +281,8 @@ And the response from the broker is: ```json { - "@context": "http://context/ngsi-context.jsonld", "id": "urn:ngsi-ld:Building:store001", "type": "Building", - "furniture": ["urn:ngsi-ld:Shelf:unit001", "urn:ngsi-ld:Shelf:unit002", "urn:ngsi-ld:Shelf:unit003"], "category": { "vocab": "commercial" }, @@ -296,9 +294,17 @@ And the response from the broker is: }, "location": { "type": "Point", - "coordinates": [13.3986, 52.5547] + "coordinates": [ + 13.3986, + 52.5547 + ] }, - "name": "Bösebrücke Einkauf" + "name": "Bösebrücke Einkauf", + "furniture": [ + "urn:ngsi-ld:Shelf:unit001", + "urn:ngsi-ld:Shelf:unit002", + "urn:ngsi-ld:Shelf:unit003" + ] } ```