{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EmployerAttributes", "title": "EmployerAttributes", "type": "object", "description": "Additional attributes for an employer, including both global and country-specific settings.", "properties": { "employerType": { "type": "string", "description": "The type classification of the employer.", "enum": [ "DIRECT_EMPLOYER", "STAFFING_AGENCY", "RECRUITING_FIRM" ], "example": "DIRECT_EMPLOYER" }, "countrySpecificAttributes": { "type": "array", "description": "Attributes that vary by country, such as website URLs, phone numbers, and locale-specific information.", "items": { "$ref": "#/components/schemas/CountrySpecificAttributes" }, "example": [] }, "localeSpecificAttributes": { "type": "array", "description": "Locale-specific employer attributes.", "items": { "$ref": "#/components/schemas/LocaleSpecificAttributes" }, "example": [] } } }