Coyote Logistics · Schema

LoadSearchResult

Load search response

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

Properties

Name Type Description
loadId integer Coyote load Id
loadDate string Load date
loadStops array Load stops
trackingUrl string Tracking Url
View JSON Schema on GitHub

JSON Schema

loadsearchresult.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "LoadSearchResult",
  "x-source-schema": "Coyote.Systems.ExternalApi.Contracts.Models.LoadSearch.LoadSearchResult",
  "type": "object",
  "properties": {
    "loadId": {
      "type": "integer",
      "description": "Coyote load Id",
      "format": "int32"
    },
    "loadDate": {
      "type": "string",
      "description": "Load date",
      "format": "date-time"
    },
    "loadStops": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Coyote.Systems.ExternalApi.Contracts.Models.LoadSearch.LoadStop"
      },
      "description": "Load stops",
      "nullable": true
    },
    "trackingUrl": {
      "type": "string",
      "description": "Tracking Url",
      "format": "uri",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Load search response"
}