{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "LocationData", "x-source-schema": "Coyote.Systems.ExternalApi.Contracts.Models.Spot.LocationData", "required": [ "cityName", "postalCode", "stateCode" ], "type": "object", "properties": { "cityName": { "type": "string", "description": "City" }, "stateCode": { "type": "string", "description": "State" }, "countryCode": { "type": "string", "description": "Country (optional)", "nullable": true }, "postalCode": { "type": "string", "description": "Postal Code" } }, "additionalProperties": false, "description": "City, State and Postal Code required" }