{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Location", "type": "object", "description": "A geographic location associated with an expense", "properties": { "id": { "type": "string", "description": "The location identifier" }, "name": { "type": "string", "description": "The localized location name" }, "city": { "type": "string", "description": "The city name" }, "countryCode": { "type": "string", "description": "ISO 3166-1 alpha-2 country code" }, "countrySubDivisionCode": { "type": "string", "description": "ISO 3166-2 subdivision code" } } }