Entity-example.json 654 Bytes
Newer Older
canterafonsj's avatar
canterafonsj committed
{
  "id": "urn:ngsi-ld:Vehicle:V123",
  "type": "Vehicle",
  "speed": {
    "type": "Property",
    "value": 23,
    "accuracy": {
      "type": "Property",
canterafonsj's avatar
canterafonsj committed
      "value": 0.7
canterafonsj's avatar
canterafonsj committed
    },
    "providedBy": {
      "type": "Relationship",
      "object": "urn:ngsi-ld:Person:Bob"  
    }
  },
  "closeTo": {
    "type": "Relationship",
    "object": "urn:ngsi-ld:Building:B1234"  
canterafonsj's avatar
canterafonsj committed
  },
  "location": {
      "type": "GeoProperty",
      "value": {
        "type":"Point",
        "coordinates": [-8,44]  
      }
canterafonsj's avatar
canterafonsj committed
  },
  "@context": [
      "https://example.org/ld/vehicle.jsonld",
      "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.3.jsonld"
canterafonsj's avatar
canterafonsj committed
}