Coyote Logistics · Schema

Address

Address

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

Properties

Name Type Description
line1 string Line1
line2 string Line2
city string City
postalCode string Postal Code
state string State
countryCode string Country Code
View JSON Schema on GitHub

JSON Schema

address.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Address",
  "x-source-schema": "Coyote.Systems.ExternalApi.Contracts.Models.Tracking.Address",
  "type": "object",
  "properties": {
    "line1": {
      "type": "string",
      "description": "Line1",
      "nullable": true
    },
    "line2": {
      "type": "string",
      "description": "Line2",
      "nullable": true
    },
    "city": {
      "type": "string",
      "description": "City",
      "nullable": true
    },
    "postalCode": {
      "type": "string",
      "description": "Postal Code",
      "nullable": true
    },
    "state": {
      "type": "string",
      "description": "State",
      "nullable": true
    },
    "countryCode": {
      "type": "string",
      "description": "Country Code",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Address"
}