{ "$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" }