Commit a8b5cc00 authored by Andrea Il Grande's avatar Andrea Il Grande
Browse files

added new data

parent cec56868
Loading
Loading
Loading
Loading
+18 −0
Original line number Diff line number Diff line
{
    "id": "urn:ngsi-ld:ContextSourceRegistration:randomUUID",
    "type": "ContextSourceRegistration",
    "information": [
        {
        "entities": [
            {
            "type": "Vehicle"
            }
        ]
        }
    ],
    "endpoint": "http://my.csource.org:1026",
    "mode": "auxiliary",
    "@context": [
        "https://forge.etsi.org/rep/cim/ngsi-ld-test-suite/-/raw/develop/resources/jsonld-contexts/ngsi-ld-test-suite-compound.jsonld"
    ]
}
 No newline at end of file
+7 −0
Original line number Diff line number Diff line
{
    "brandname": {
        "type": "Property",
        "value": "BMW"
    },
    "@context": "https://forge.etsi.org/rep/cim/ngsi-ld-test-suite/-/raw/develop/resources/jsonld-contexts/ngsi-ld-test-suite-compound.jsonld"
}
 No newline at end of file
+17 −0
Original line number Diff line number Diff line
{
    "id": "urn:ngsi-ld:Vehicle:randomUUID",
    "type": "Vehicle",
    "brandName": {
        "type": "Property",
        "value": "BMW"
    },
    "isParked2": {
        "type": "Relationship",
        "object": "urn:ngsi-ld:OffStreetParking:Downtown2",
        "observedAt": "2017-07-29T12:00:04Z",
        "providedBy": {
        "type": "Relationship",
        "object": "urn:ngsi-ld:Person:Alice"
        }
    }
} 
 No newline at end of file
+5 −1
Original line number Diff line number Diff line
@@ -8,6 +8,10 @@
    "isParked": {
        "type": "Relationship",
        "object": "urn:ngsi-ld:OffStreetParking:Downtown1",
        "observedAt": "2017-07-29T12:00:04Z"
        "observedAt": "2017-07-29T12:00:04Z",
        "providedBy": {
        "type": "Relationship",
        "object": "urn:ngsi-ld:Person:Bob"
        }
    }
} 
 No newline at end of file