Coyote Logistics · Schema

BookingRequest

Booking Request

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

Properties

Name Type Description
carrierId integer Coyote Carrier Id
load object
View JSON Schema on GitHub

JSON Schema

bookingrequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "BookingRequest",
  "x-source-schema": "Coyote.Systems.ExternalApi.Contracts.Models.Booking.BookingRequest",
  "required": [
    "load"
  ],
  "type": "object",
  "properties": {
    "carrierId": {
      "type": "integer",
      "description": "Coyote Carrier Id",
      "format": "int32"
    },
    "load": {
      "$ref": "#/components/schemas/Coyote.Systems.ExternalApi.Contracts.Models.AvailableLoads.AvailableLoad"
    }
  },
  "additionalProperties": false,
  "description": "Booking Request"
}