Coyote Logistics · Schema

RateItem

Rate line item that make up the quote

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

Properties

Name Type Description
rateCode object
description string Rate code description
unitRate number Unit amount of the rate line item.
units number Number of Units
totalRate number Total amount of the rate line item.
currency object
View JSON Schema on GitHub

JSON Schema

rateitem.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "RateItem",
  "x-source-schema": "Coyote.Systems.ExternalApi.Contracts.Models.Spot.RateItem",
  "type": "object",
  "properties": {
    "rateCode": {
      "$ref": "#/components/schemas/Coyote.Systems.ExternalApi.Contracts.Models.RateCode"
    },
    "description": {
      "type": "string",
      "description": "Rate code description",
      "nullable": true
    },
    "unitRate": {
      "type": "number",
      "description": "Unit amount of the rate line item.",
      "format": "double"
    },
    "units": {
      "type": "number",
      "description": "Number of Units",
      "format": "double"
    },
    "totalRate": {
      "type": "number",
      "description": "Total amount of the rate line item.",
      "format": "double"
    },
    "currency": {
      "$ref": "#/components/schemas/Coyote.Systems.ExternalApi.Contracts.Models.Enums_Currency"
    }
  },
  "additionalProperties": false,
  "description": "Rate line item that make up the quote"
}