LinkedIn · Schema

OrganizationLocation

OrganizationLocation from LinkedIn API

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
locationType string
address object
geoLocation string
staffCountRange string
description object
View JSON Schema on GitHub

JSON Schema

linkedin-regulations-data-portability-organization-location-schema.json Raw ↑
{
  "$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"
    }
  }
}