{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OrganizationLocation", "title": "OrganizationLocation", "type": "object", "properties": { "locationType": { "type": "string", "enum": [ "HEADQUARTERS", "OTHER" ], "example": "HEADQUARTERS" }, "address": { "$ref": "#/components/schemas/Address" }, "geoLocation": { "type": "string", "example": "urn:li:geo:101308755" }, "staffCountRange": { "type": "string", "example": "SIZE_1" }, "description": { "$ref": "#/components/schemas/LocalizedString" } } }