Skip to content

Instantly share code, notes, and snippets.

@fabianekc
Created January 25, 2023 23:35
Show Gist options
  • Save fabianekc/2389c0394b718d19da778715a7c958bc to your computer and use it in GitHub Desktop.
Save fabianekc/2389c0394b718d19da778715a7c958bc to your computer and use it in GitHub Desktop.
{
"@context": {
"@version": 1.1,
"@vocab": "https://soya.ownyourdata.eu/TransportEdge/"
},
"@graph": [
{
"@type": "TransportEdge",
"tsp_did": "asdf",
"good_did": "asdf",
"transported_at": "2023-01-19",
"source": [
{
"@type": "Location",
"address": "Imkerei",
"coordinates": [
{
"@type": "GPS",
"latitude": 45.2,
"longitude": 16.8
}
]
}
],
"target": [
{
"@type": "Location",
"address": "Shop",
"coordinates": [
{
"@type": "GPS",
"latitude": 45.2,
"longitude": 16.8
}
]
}
],
"transport_mode": "bike"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment