Coyote Logistics · Schema

Location

Location

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

Properties

Name Type Description
address object
timestampUtc string Timestamp in Utc
geoCoordinates object
View JSON Schema on GitHub

JSON Schema

location.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Location",
  "x-source-schema": "Coyote.Systems.ExternalApi.Contracts.Models.Tracking.Location",
  "type": "object",
  "properties": {
    "address": {
      "$ref": "#/components/schemas/Coyote.Systems.ExternalApi.Contracts.Models.Tracking.TrackingAddress"
    },
    "timestampUtc": {
      "type": "string",
      "description": "Timestamp in Utc",
      "format": "date-time",
      "nullable": true
    },
    "geoCoordinates": {
      "$ref": "#/components/schemas/Coyote.Systems.ExternalApi.Contracts.Models.Tracking.GeoCoordinates"
    }
  },
  "additionalProperties": false,
  "description": "Location"
}