Coyote Logistics · Schema

BookingConflict

Booking request conflict response

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

Properties

Name Type Description
description string Description of the conflict field/data
bookingValue object Booking request value
currentValue object Current Coyote value
sequence integer Object sequence in a list
View JSON Schema on GitHub

JSON Schema

bookingconflict.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "BookingConflict",
  "x-source-schema": "Coyote.Systems.ExternalApi.Contracts.Models.Booking.BookingConflict",
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "description": "Description of the conflict field/data",
      "nullable": true
    },
    "bookingValue": {
      "type": "object",
      "additionalProperties": false,
      "description": "Booking request value",
      "nullable": true
    },
    "currentValue": {
      "type": "object",
      "additionalProperties": false,
      "description": "Current Coyote value",
      "nullable": true
    },
    "sequence": {
      "type": "integer",
      "description": "Object sequence in a list",
      "format": "int32"
    }
  },
  "additionalProperties": false,
  "description": "Booking request conflict response"
}