Coyote Logistics · Schema

Contact

Contact details

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

Properties

Name Type Description
name string Contact Name (It must be 50 characters or less.)
phoneNumberCountryCode string Phone number country code
phoneNumber string Phone number
phoneNumberExtension string Phone number extension
email string Contact email address
View JSON Schema on GitHub

JSON Schema

contact.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Contact",
  "x-source-schema": "Coyote.Systems.ExternalApi.Contracts.Models.LoadBuilding.Contact",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Contact Name (It must be 50 characters or less.)",
      "nullable": true
    },
    "phoneNumberCountryCode": {
      "type": "string",
      "description": "Phone number country code",
      "nullable": true
    },
    "phoneNumber": {
      "type": "string",
      "description": "Phone number",
      "nullable": true
    },
    "phoneNumberExtension": {
      "type": "string",
      "description": "Phone number extension",
      "nullable": true
    },
    "email": {
      "type": "string",
      "description": "Contact email address",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Contact details"
}