Adobe Captivate · Schema

LearningObjectReference

Reference to a learning object involved in an event

AuthoringEducationeLearningLMSSCORMTrainingxAPI

Properties

Name Type Description
loId string Learning object identifier
loType string Type of learning object
name string Learning object name
instanceId string Learning object instance identifier
View JSON Schema on GitHub

JSON Schema

learning-manager-webhooks-learning-object-reference-schema.json Raw ↑
{
  "$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"
    }
  }
}