iSpring Learn · Schema

TokenResponse

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
access_token string
expires_in integer
token_type string
View JSON Schema on GitHub

JSON Schema

TokenResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TokenResponse",
  "required": [
    "access_token",
    "expires_in",
    "token_type"
  ],
  "properties": {
    "access_token": {
      "type": "string"
    },
    "expires_in": {
      "type": "integer"
    },
    "token_type": {
      "type": "string",
      "enum": [
        "bearer"
      ]
    }
  },
  "type": "object",
  "xml": {
    "name": "response"
  }
}