Adobe Captivate · Schema

GamificationPoints

Gamification points for a user

AuthoringEducationeLearningLMSSCORMTrainingxAPI

Properties

Name Type Description
id string Unique identifier
type string
attributes object
View JSON Schema on GitHub

JSON Schema

prime-api-gamification-points-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/prime-api-gamification-points-schema.json",
  "title": "GamificationPoints",
  "description": "Gamification points for a user",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier"
    },
    "type": {
      "type": "string",
      "const": "gamification"
    },
    "attributes": {
      "type": "object",
      "properties": {
        "learnerPoints": {
          "type": "integer",
          "description": "Points earned through learning activities"
        },
        "managerPoints": {
          "type": "integer",
          "description": "Points earned as a manager"
        },
        "overallPoints": {
          "type": "integer",
          "description": "Total points across all categories"
        }
      }
    }
  }
}