Coyote Logistics · Schema

TrackingAddress

Address

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

Properties

Name Type Description
line1 string Line 1
line2 string Line 2
line3 string Line 3
postalCode string Postal Code
cityName string City Name
stateProvinceCode string State or Province Code
countryCode string Country Code
View JSON Schema on GitHub

JSON Schema

trackingaddress.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TrackingAddress",
  "x-source-schema": "Coyote.Systems.ExternalApi.Contracts.Models.Tracking.TrackingAddress",
  "type": "object",
  "properties": {
    "line1": {
      "type": "string",
      "description": "Line 1",
      "nullable": true
    },
    "line2": {
      "type": "string",
      "description": "Line 2",
      "nullable": true
    },
    "line3": {
      "type": "string",
      "description": "Line 3",
      "nullable": true
    },
    "postalCode": {
      "type": "string",
      "description": "Postal Code",
      "nullable": true
    },
    "cityName": {
      "type": "string",
      "description": "City Name",
      "nullable": true
    },
    "stateProvinceCode": {
      "type": "string",
      "description": "State or Province Code",
      "nullable": true
    },
    "countryCode": {
      "type": "string",
      "description": "Country Code",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Address"
}