LinkedIn · JSON Structure

Linkedin Marketing Audience User Stream Element Structure

UserStreamElement from LinkedIn API

Type: object Properties: 2 Required: 2
BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

UserStreamElement is a JSON Structure definition published by LinkedIn, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

action userIds

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/linkedin/refs/heads/main/json-structure/linkedin-marketing-audience-user-stream-element-structure.json",
  "name": "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"
  ]
}