LinkedIn · Schema

OrganizationAcl

OrganizationAcl from LinkedIn API

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
organization string Organization URN
role string Role in the organization
state string State of the role assignment
View JSON Schema on GitHub

JSON Schema

linkedin-marketing-campaigns-organization-acl-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-marketing-campaigns-organization-acl-schema.json",
  "title": "OrganizationAcl",
  "description": "OrganizationAcl from LinkedIn API",
  "type": "object",
  "properties": {
    "organization": {
      "type": "string",
      "description": "Organization URN",
      "example": "urn:li:organization:12345678"
    },
    "role": {
      "type": "string",
      "enum": [
        "ADMINISTRATOR",
        "DIRECT_SPONSORED_CONTENT_POSTER",
        "RECRUITING_POSTER",
        "LEAD_GEN_FORMS_MANAGER"
      ],
      "description": "Role in the organization",
      "example": "ADMINISTRATOR"
    },
    "state": {
      "type": "string",
      "enum": [
        "APPROVED",
        "REVOKED",
        "REQUESTED"
      ],
      "description": "State of the role assignment",
      "example": "APPROVED"
    }
  }
}