Coyote Logistics · Schema

GeoCoordinates

GeoCoordinates

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

Properties

Name Type Description
latitude number Latitude
longitude number Longitude
View JSON Schema on GitHub

JSON Schema

geocoordinates.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "GeoCoordinates",
  "x-source-schema": "Coyote.Systems.ExternalApi.Contracts.Models.Tracking.GeoCoordinates",
  "type": "object",
  "properties": {
    "latitude": {
      "type": "number",
      "description": "Latitude",
      "format": "double"
    },
    "longitude": {
      "type": "number",
      "description": "Longitude",
      "format": "double"
    }
  },
  "additionalProperties": false,
  "description": "GeoCoordinates"
}