{ "$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" } } }