Coyote Logistics · Schema

LtlLocationData

City, State and Postal Code required

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

Properties

Name Type Description
cityName string City
stateCode string State
countryCode string Country
postalCode string Postal Code
View JSON Schema on GitHub

JSON Schema

ltllocationdata.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "LtlLocationData",
  "x-source-schema": "Coyote.Systems.ExternalApi.Contracts.Models.Spot.LtlLocationData",
  "required": [
    "cityName",
    "countryCode",
    "postalCode",
    "stateCode"
  ],
  "type": "object",
  "properties": {
    "cityName": {
      "type": "string",
      "description": "City"
    },
    "stateCode": {
      "type": "string",
      "description": "State"
    },
    "countryCode": {
      "type": "string",
      "description": "Country"
    },
    "postalCode": {
      "type": "string",
      "description": "Postal Code"
    }
  },
  "additionalProperties": false,
  "description": "City, State and Postal Code required"
}