Skip to content

Commit

Permalink
beta version of DTDL digital twin
Browse files Browse the repository at this point in the history
  • Loading branch information
albertoabellagarcia committed Oct 5, 2023
1 parent 2e75b3f commit 0d8bc82
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions AirportLocation/schemaDTDL.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"@id": "dtmi:com:ngsi-ld:AirportLocation;0",
"@type": "Interface",
"@context": "dtmi:dtdl:context;2",
"comment": "Smart Data Models - Mapping of ACRIS data model AirportLocation adapted to DTDL from smartdatamodels.org. Source: https://raw.githubusercontent.com/smart-data-models/dataModel.ACRIS/master/AirportLocation/schema.json",
"description": "Property. The geospatial or geopolitical location of an Airport.",
"displayName": "AirportLocation",
"contents": [
{
"name": "Latitude",
"writable": true,
"displayName": "Latitude",
"@type": "Property",
"schema": "long",
"comment": "Coordinate for latitude of the Airport."
},
{
"name": "Longitude",
"writable": true,
"displayName": "Longitude",
"@type": "Property",
"schema": "long",
"comment": "Coordinate for longitude of the Airport."
},
{
"name": "Name",
"writable": true,
"displayName": "Name",
"@type": "Property",
"schema": "string",
"comment": "Unique name for the Airport Location."
},
{
"name": "Srid",
"writable": true,
"displayName": "Srid",
"@type": "Property",
"schema": "long",
"comment": "A Spatial Reference System Identifier (SRID), to identify the spatial coordinate system definitions."
}
]
}

0 comments on commit 0d8bc82

Please sign in to comment.