Coyote Logistics · Schema

Customer

Customer information

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

Properties

Name Type Description
referenceNumbers array List of reference numbers
customerId integer Customer Id
View JSON Schema on GitHub

JSON Schema

customer.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Customer",
  "x-source-schema": "Coyote.Systems.ExternalApi.Contracts.Models.LoadBuilding.Customer",
  "type": "object",
  "properties": {
    "referenceNumbers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Coyote.Systems.ExternalApi.Contracts.Models.LoadBuilding.ReferenceNumber"
      },
      "description": "List of reference numbers",
      "nullable": true
    },
    "customerId": {
      "type": "integer",
      "description": "Customer Id",
      "format": "int32"
    }
  },
  "additionalProperties": false,
  "description": "Customer information"
}