Coyote Logistics · Schema

OfferDetails

Offer details

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

Properties

Name Type Description
id string Offer id
loadId integer Available load Id
amount number Offer amount
currency object
status object
View JSON Schema on GitHub

JSON Schema

offerdetails.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OfferDetails",
  "x-source-schema": "Coyote.Systems.ExternalApi.Contracts.Models.Offer.OfferDetails",
  "required": [
    "id"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Offer id"
    },
    "loadId": {
      "type": "integer",
      "description": "Available load Id",
      "format": "int32"
    },
    "amount": {
      "type": "number",
      "description": "Offer amount",
      "format": "double"
    },
    "currency": {
      "$ref": "#/components/schemas/Coyote.Systems.ExternalApi.Contracts.Models.Offer.CurrencyType"
    },
    "status": {
      "$ref": "#/components/schemas/Coyote.Systems.ExternalApi.Contracts.Models.Offer.OfferStatus"
    }
  },
  "additionalProperties": false,
  "description": "Offer details"
}