Commit aac966e6 authored by Benoit Orihuela's avatar Benoit Orihuela
Browse files

chore: remove unused test data files

parent 19a14aae
Loading
Loading
Loading
Loading
+0 −6
Original line number Original line Diff line number Diff line
{
   "endpoint":"http://my.new.csource.org:1026",
   "@context": [
       "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.3.jsonld"
   ]
}
 No newline at end of file
+0 −8
Original line number Original line Diff line number Diff line
{
    "id": "urn:ngsi-ld:Building:3009ef20-9f62-41f5-bd66-92f041b428b9",
    "type": "Building",
    "@context": [
        "https://forge.etsi.org/rep/cim/ngsi-ld-test-suite/-/raw/develop/resources/jsonld-contexts/ngsi-ld-test-suite-compound.jsonld",
        "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.3.jsonld"
    ]
}
 No newline at end of file
+0 −11
Original line number Original line Diff line number Diff line
{
    "id": "urn:ngsi-ld:Building:randomUUID",
    "type": "Building",
    "name": {
        "type": "Property",
        "value": "Eiffel Tower"
    },
    "@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
+0 −12
Original line number Original line Diff line number Diff line
{
    "id": "urn:ngsi-ld:Building:3009ef20-9f62-41f5-bd66-92f041b428b9",
    "type": "Building",
    "locatedAt": {
        "type": "Relationship",
        "object": "urn:ngsi-ld:City:Paris"
    },
    "@context": [
        "https://forge.etsi.org/rep/cim/ngsi-ld-test-suite/-/raw/develop/resources/jsonld-contexts/ngsi-ld-test-suite-compound.jsonld",
        "https://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context-v1.3.jsonld"
    ]
}
 No newline at end of file
+0 −54
Original line number Original line Diff line number Diff line
[
    {
        "id": "urn:ngsi-ld:OffStreetParking:randomUUID",
        "type": "https://ngsi-ld-test-suite/context#OffStreetParking",
        "availableSpotNumber": {
            "type": "Property",
            "providedBy": {
                "type": "Relationship",
                "object": "urn:ngsi-ld:Camera:C1"
            },
            "reliability": {
                "type": "Property",
                "value": 0.7
            },
            "value": 121,
            "observedAt": "2017-07-29T12:05:02Z"
        },
        "totalSpotNumber": {
            "type": "Property",
            "value": 200
        },
        "location": {
            "type": "GeoProperty",
            "value": {
                "type": "Point",
                "coordinates": [
                    -8.5,
                    41.2
                ]
            }
        },
        "name": {
            "type": "Property",
            "value": "Downtown One"
        }
    },
    {
        "id": "urn:ngsi-ld:Vehicle:randomUUID",
        "type": "https://ngsi-ld-test-suite/context#Vehicle",
        "https://ngsi-ld-test-suite/context#brandName": {
            "type": "Property",
            "value": "Mercedes"
        },
        "isParked": {
            "type": "Relationship",
            "providedBy": {
                "type": "Relationship",
                "object": "urn:ngsi-ld:Person:Bob"
            },
            "object": "urn:ngsi-ld:OffStreetParking:Downtown1",
            "observedAt": "2017-07-29T12:00:04Z"
        }
    }
]
 No newline at end of file
Loading