Coyote Logistics · Schema

Rate

Defines the load rate

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

Properties

Name Type Description
value number Load rate
currencyType object
View JSON Schema on GitHub

JSON Schema

rate.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Rate",
  "x-source-schema": "Coyote.Systems.ExternalApi.Contracts.Models.AvailableLoads.Rate",
  "required": [
    "currencyType",
    "value"
  ],
  "type": "object",
  "properties": {
    "value": {
      "type": "number",
      "description": "Load rate",
      "format": "double"
    },
    "currencyType": {
      "$ref": "#/components/schemas/Coyote.Systems.ExternalApi.Contracts.Models.Enums_CurrencyType"
    }
  },
  "additionalProperties": false,
  "description": "Defines the load rate"
}