project44 · Schema

ETAWindow

LogisticsSupply Chain VisibilityTrackingFreightMulti-modal

Properties

Name Type Description
estimatedAt string
confidenceLow string
confidenceHigh string
predictedOnTime boolean
predictedLateMinutes integer
View JSON Schema on GitHub

JSON Schema

project44-etawindow-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ETAWindow",
  "title": "ETAWindow",
  "type": "object",
  "properties": {
    "estimatedAt": {
      "type": "string",
      "format": "date-time"
    },
    "confidenceLow": {
      "type": "string",
      "format": "date-time"
    },
    "confidenceHigh": {
      "type": "string",
      "format": "date-time"
    },
    "predictedOnTime": {
      "type": "boolean"
    },
    "predictedLateMinutes": {
      "type": "integer",
      "nullable": true
    }
  }
}