Reference to a learning object involved in an event
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-captivate/refs/heads/main/json-schema/learning-manager-webhooks-learning-object-reference-schema.json", "title": "LearningObjectReference", "description": "Reference to a learning object involved in an event", "type": "object", "properties": { "loId": { "type": "string", "description": "Learning object identifier" }, "loType": { "type": "string", "description": "Type of learning object", "enum": [ "course", "learningProgram", "certification", "jobAid" ] }, "name": { "type": "string", "description": "Learning object name" }, "instanceId": { "type": "string", "description": "Learning object instance identifier" } } }