project44 · Schema

Position

LogisticsSupply Chain VisibilityTrackingFreightMulti-modal

Properties

Name Type Description
timestamp string
latitude number
longitude number
heading number
speed number
speedUnit string
View JSON Schema on GitHub

JSON Schema

project44-position-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Position",
  "title": "Position",
  "type": "object",
  "properties": {
    "timestamp": {
      "type": "string",
      "format": "date-time"
    },
    "latitude": {
      "type": "number",
      "format": "double"
    },
    "longitude": {
      "type": "number",
      "format": "double"
    },
    "heading": {
      "type": "number",
      "format": "double",
      "nullable": true
    },
    "speed": {
      "type": "number",
      "format": "double",
      "nullable": true
    },
    "speedUnit": {
      "type": "string",
      "enum": [
        "MPH",
        "KPH"
      ]
    }
  }
}