Adobe Captivate · Schema

AccountResponse

Account details response

AuthoringEducationeLearningLMSSCORMTrainingxAPI

Properties

Name Type Description
data object A Learning Manager account
View JSON Schema on GitHub

JSON Schema

prime-api-account-response-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-account-response-schema.json",
  "title": "AccountResponse",
  "description": "Account details response",
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "description": "A Learning Manager account",
      "properties": {
        "id": {
          "type": "string",
          "description": "Unique account identifier"
        },
        "type": {
          "type": "string",
          "const": "account"
        },
        "attributes": {
          "type": "object",
          "properties": {
            "dateCreated": {
              "type": "string",
              "format": "date-time",
              "description": "Account creation timestamp"
            },
            "gamificationEnabled": {
              "type": "boolean",
              "description": "Whether gamification features are enabled"
            },
            "locale": {
              "type": "string",
              "description": "Default locale for the account"
            },
            "name": {
              "type": "string",
              "description": "Account name"
            },
            "subdomain": {
              "type": "string",
              "description": "The Learning Manager subdomain"
            },
            "timezone": {
              "type": "string",
              "description": "Default timezone for the account"
            }
          }
        }
      }
    }
  }
}