Coyote Logistics · Schema

Temperature

Defines the temperature details

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

Properties

Name Type Description
value number Temperature value.
unit object
View JSON Schema on GitHub

JSON Schema

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