{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/linkedin/refs/heads/main/json-schema/linkedin-regulations-data-portability-organization-location-schema.json", "title": "OrganizationLocation", "description": "OrganizationLocation from LinkedIn API", "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" } } }