This is an example of the Velopark live data structure:
{
"@context": {
"mv": "http://schema.mobivoc.org/",
"dc": "http://purl.org/dc/terms/",
"sosa": "http://www.w3.org/ns/sosa/",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"RealTimeCapacity": "mv:RealTimeCapacity",
"Observation": "sosa:Observation",
"capacity": "mv:capacity",
"date": {
"@type": "xsd:dateTime",
"@id": "dc:date"
},
"freePlaces": {
"@type": "xsd:integer",
"@id": "mv:currentValue"
},
"totalPlaces": {
"@type": "xsd:integer",
"@id": "mv:totalCapacity"
},
"lastObserved": {
"@type": "xsd:dateTime",
"@id": "sosa:resultTime"
}
},
"@type": "Observation",
"lastObserved": "2020-02-10T10:55:20.295Z" // Last observed date
"@graph": [
{
"@id": "https://data.velopark.be/data/Parko_1", // Velopark ID
"capacity": {
"@type": "RealTimeCapacity",
"date": "2020-02-10T10:55:20.295Z", // Last reported date
"freePlaces": "31",
"totalPlaces": "82"
}
}
]
}