Coyote Logistics · Schema

AppointmentDate

Appointment date of stop

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

Properties

Name Type Description
appointmentStartDateTime string Appointment start date and time
appointmentEndDateTime string Appointment end date and time
View JSON Schema on GitHub

JSON Schema

appointmentdate.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AppointmentDate",
  "x-source-schema": "Coyote.Systems.ExternalApi.Contracts.Models.AvailableLoads.AppointmentDate",
  "type": "object",
  "properties": {
    "appointmentStartDateTime": {
      "type": "string",
      "description": "Appointment start date and time",
      "format": "date-time",
      "nullable": true
    },
    "appointmentEndDateTime": {
      "type": "string",
      "description": "Appointment end date and time",
      "format": "date-time",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Appointment date of stop"
}