Coyote Logistics · Schema

StopDetail

Stop Detail

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

Properties

Name Type Description
proNumber string ProNumber (LTL)
loadStops array Load Stops
View JSON Schema on GitHub

JSON Schema

stopdetail.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "StopDetail",
  "x-source-schema": "Coyote.Systems.ExternalApi.Contracts.Models.Tracking.StopDetail",
  "type": "object",
  "properties": {
    "proNumber": {
      "type": "string",
      "description": "ProNumber (LTL)",
      "nullable": true
    },
    "loadStops": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Coyote.Systems.ExternalApi.Contracts.Models.Tracking.LoadStopProgress"
      },
      "description": "Load Stops",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Stop Detail"
}