LinkedIn · Schema

Reaction

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
actor string
reactionType string
created object
View JSON Schema on GitHub

JSON Schema

linkedin-reaction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Reaction",
  "title": "Reaction",
  "type": "object",
  "properties": {
    "actor": {
      "type": "string",
      "example": "urn:li:person:ABC123"
    },
    "reactionType": {
      "type": "string",
      "enum": [
        "LIKE",
        "CELEBRATE",
        "SUPPORT",
        "LOVE",
        "INSIGHTFUL",
        "FUNNY"
      ],
      "example": "LIKE"
    },
    "created": {
      "$ref": "#/components/schemas/Timestamp"
    }
  }
}