LinkedIn · Schema

UserStreamElement

UserStreamElement from LinkedIn API

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
action string Action to perform
userIds array
View JSON Schema on GitHub

JSON Schema

linkedin-marketing-audience-user-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-user-stream-element-schema.json",
  "title": "UserStreamElement",
  "description": "UserStreamElement from LinkedIn API",
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "enum": [
        "ADD",
        "REMOVE"
      ],
      "description": "Action to perform",
      "example": "ADD"
    },
    "userIds": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/UserId"
      }
    }
  },
  "required": [
    "action",
    "userIds"
  ]
}