Coyote Logistics · Schema

Weight

Defines the weight

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

Properties

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

JSON Schema

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