{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "JobLocation", "type": "object", "description": "The location of the job.", "properties": { "streetAddress": { "type": "string", "description": "Street address of the job location." }, "city": { "type": "string", "description": "City where the job is located." }, "state": { "type": "string", "description": "State, province, or region." }, "postalCode": { "type": "string", "description": "Postal or ZIP code." }, "country": { "type": "string", "description": "ISO 3166-1 alpha-2 country code." }, "formattedAddress": { "type": "string", "description": "A human-readable formatted address string." } } }