{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "GeoLocation", "type": "object", "properties": { "city": { "type": "['string', 'null']" }, "state": { "type": "['string', 'null']" }, "stateCode": { "type": "['string', 'null']" }, "country": { "type": "['string', 'null']" }, "countryCode": { "type": "['string', 'null']" }, "lat": { "type": "['number', 'null']" }, "lng": { "type": "['number', 'null']" } } }