Coyote Logistics · Schema

GeoLocation

Geo location

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

geolocation.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "GeoLocation",
  "x-source-schema": "Coyote.Systems.ExternalApi.Contracts.Models.AvailableLoads.GeoLocation",
  "type": "object",
  "properties": {
    "latitude": {
      "maximum": 90,
      "minimum": -90,
      "type": "number",
      "description": "Latitude",
      "format": "double",
      "nullable": true
    },
    "longitude": {
      "maximum": 180,
      "minimum": -180,
      "type": "number",
      "description": "Longitude",
      "format": "double",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Geo location"
}