{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Location", "title": "Location", "type": "object", "properties": { "country": { "type": "string", "description": "ISO 3166-1 alpha-2 country code" }, "countryCode": { "type": "string" }, "region": { "type": "string" }, "city": { "type": "string" }, "address": { "type": "string" }, "postalCode": { "type": "string" }, "remote": { "type": "boolean", "description": "Whether the position is remote" } } }