LinkedIn · Schema

OrganizationLocation

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-organizationlocation-schema.json Raw ↑
{
  "$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"
    }
  }
}