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 0d8bc82 commit e642e61
Showing 1 changed file with 78 additions and 0 deletions.
78 changes: 78 additions & 0 deletions CheckpointAreaLocation/schemaDTDL.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
{
"@id": "dtmi:com:ngsi-ld:CheckpointAreaLocation;0",
"@type": "Interface",
"@context": "dtmi:dtdl:context;2",
"comment": "Smart Data Models - Mapping of ACRIS data model CheckpointAreaLocation adapted to DTDL from smartdatamodels.org. Source: https://raw.githubusercontent.com/smart-data-models/dataModel.ACRIS/master/CheckpointAreaLocation/schema.json",
"description": "Property. The geospatial or geopolitical location of a Checkpoint.",
"displayName": "CheckpointAreaLocation",
"contents": [
{
"name": "Latitude",
"writable": true,
"displayName": "Latitude",
"@type": "Property",
"schema": "long",
"comment": "Coordinate of the latitude of the checkpoint area location."
},
{
"name": "Longitude",
"writable": true,
"displayName": "Longitude",
"@type": "Property",
"schema": "long",
"comment": "Coordinate of the longitude of the checkpoint area location."
},
{
"name": "Name",
"writable": true,
"displayName": "Name",
"@type": "Property",
"schema": "string",
"comment": "Unique name for geospatial or geopolitical location of a Checkpoint Area 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"
},
{
"@type": "object",
"name": "AirportElevation",
"comment": "The height of an Airport, above sea level.",
"displayName": "AirportElevation",
"fields": [
{
"name": "AirportElevationUnitOfMeasurement",
"schema": "object"
},
{
"name": "Name",
"schema": "string"
},
{
"name": "Value",
"schema": "long"
}
]
},
{
"@type": "object",
"name": "ZoneAreaLocation",
"comment": "The geospatial or geopolitical location of a Queuing Zone in a Terminal.",
"displayName": "ZoneAreaLocation",
"fields": [
{
"name": "Name",
"schema": "string"
},
{
"name": "TerminalAreaLocation",
"schema": "object"
}
]
}
]
}

0 comments on commit e642e61

Please sign in to comment.