Skip to content

Commit

Permalink
Remove @context from response.
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-fox committed Jul 25, 2024
1 parent fd0de80 commit 0aa0899
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions docs/working-with-linked-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand All @@ -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"
]
}
```

Expand Down

0 comments on commit 0aa0899

Please sign in to comment.