Coyote Logistics · Schema

BookingRequestStatus

Booking request status response

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

Properties

Name Type Description
loadId integer Coyote Load Id
carrierId integer Coyote Carrier Id
status object
validationMessages array Validation messages
View JSON Schema on GitHub

JSON Schema

bookingrequeststatus.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "BookingRequestStatus",
  "x-source-schema": "Coyote.Systems.ExternalApi.Contracts.Models.Booking.BookingRequestStatus",
  "type": "object",
  "properties": {
    "loadId": {
      "type": "integer",
      "description": "Coyote Load Id",
      "format": "int32"
    },
    "carrierId": {
      "type": "integer",
      "description": "Coyote Carrier Id",
      "format": "int32"
    },
    "status": {
      "$ref": "#/components/schemas/Coyote.Systems.ExternalApi.Contracts.Models.BookingStatus"
    },
    "validationMessages": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Validation messages",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Booking request status response"
}