LinkedIn · JSON Structure

Linkedin Regulations Data Portability Post Structure

Post from LinkedIn API

Type: object Properties: 7
BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Post is a JSON Structure definition published by LinkedIn, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id author commentary visibility lifecycleState created lastModified

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-regulations-data-portability-post-structure.json",
  "name": "Post",
  "description": "Post from LinkedIn API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "urn:li:share:7012345678901234567"
    },
    "author": {
      "type": "string",
      "example": "urn:li:organization:10002687"
    },
    "commentary": {
      "type": "string",
      "example": "Exciting news from our team!"
    },
    "visibility": {
      "type": "string",
      "enum": [
        "PUBLIC",
        "CONNECTIONS"
      ],
      "example": "PUBLIC"
    },
    "lifecycleState": {
      "type": "string",
      "enum": [
        "PUBLISHED",
        "DRAFT"
      ],
      "example": "PUBLISHED"
    },
    "created": {
      "$ref": "#/components/schemas/Timestamp"
    },
    "lastModified": {
      "$ref": "#/components/schemas/Timestamp"
    }
  }
}