iSpring Learn · Schema

UserPointsInfo

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
userId string
points number
View JSON Schema on GitHub

JSON Schema

UserPointsInfo.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "UserPointsInfo",
  "required": [
    "userId",
    "points"
  ],
  "properties": {
    "userId": {
      "type": "string",
      "format": "uuid"
    },
    "points": {
      "type": "number"
    }
  },
  "type": "object",
  "xml": {
    "name": "userPointsInfo",
    "wrapped": true
  }
}