Coyote Logistics · Schema

OfferRequest

Offer request

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

Properties

Name Type Description
loadId integer Available load Id
amount number Offer amount
currency object
webHookAddress string Web hook url address
View JSON Schema on GitHub

JSON Schema

offerrequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OfferRequest",
  "x-source-schema": "Coyote.Systems.ExternalApi.Contracts.Models.Offer.OfferRequest",
  "required": [
    "amount",
    "loadId"
  ],
  "type": "object",
  "properties": {
    "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"
    },
    "webHookAddress": {
      "type": "string",
      "description": "Web hook url address",
      "format": "uri",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Offer request"
}