LinkedIn · Schema

CompanyStreamElement

CompanyStreamElement from LinkedIn API

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
action string Action to perform
companyName string Company name to add or remove
companyDomain string Company domain (optional)
companyPageUrl string Company LinkedIn page URL (optional)
View JSON Schema on GitHub

JSON Schema

linkedin-marketing-audience-company-stream-element-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-audience-company-stream-element-schema.json",
  "title": "CompanyStreamElement",
  "description": "CompanyStreamElement from LinkedIn API",
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "enum": [
        "ADD",
        "REMOVE"
      ],
      "description": "Action to perform",
      "example": "ADD"
    },
    "companyName": {
      "type": "string",
      "description": "Company name to add or remove",
      "example": "LinkedIn"
    },
    "companyDomain": {
      "type": "string",
      "description": "Company domain (optional)",
      "example": "linkedin.com"
    },
    "companyPageUrl": {
      "type": "string",
      "description": "Company LinkedIn page URL (optional)",
      "example": "https://www.linkedin.com/company/linkedin"
    }
  },
  "required": [
    "action",
    "companyName"
  ]
}