Coyote Logistics · Schema

LocationData

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 (optional)
postalCode string Postal Code
View JSON Schema on GitHub

JSON Schema

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