Coyote Logistics · Schema

Summary

Summary

freight brokeragelogisticstruckloadLTLless-than-truckloadshippingsupply chainfreight quotesshipment trackingload management3PLcustoms brokeragecarrier APIshipper API

Properties

Name Type Description
proNumber string ProNumber (LTL)
latestLocationStatus object
nextStop object
estimatedArrivalDateTimeUtc string ETA DateTime in Utc
nextStopDistance object
View JSON Schema on GitHub

JSON Schema

summary.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Summary",
  "x-source-schema": "Coyote.Systems.ExternalApi.Contracts.Models.Tracking.Summary",
  "type": "object",
  "properties": {
    "proNumber": {
      "type": "string",
      "description": "ProNumber (LTL)",
      "nullable": true
    },
    "latestLocationStatus": {
      "$ref": "#/components/schemas/Coyote.Systems.ExternalApi.Contracts.Models.Tracking.Location"
    },
    "nextStop": {
      "$ref": "#/components/schemas/Coyote.Systems.ExternalApi.Contracts.Models.Tracking.LoadStop"
    },
    "estimatedArrivalDateTimeUtc": {
      "type": "string",
      "description": "ETA DateTime in Utc",
      "format": "date-time",
      "nullable": true
    },
    "nextStopDistance": {
      "$ref": "#/components/schemas/Coyote.Systems.ExternalApi.Contracts.Models.Tracking.Distance"
    }
  },
  "additionalProperties": false,
  "description": "Summary"
}