iSpring Learn · Schema

DetailedGroup

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
usersCount integer
groupId string
userIds object
name string
isSmart boolean
View JSON Schema on GitHub

JSON Schema

DetailedGroup.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "DetailedGroup",
  "required": [
    "usersCount",
    "groupId",
    "userIds",
    "name",
    "isSmart"
  ],
  "properties": {
    "usersCount": {
      "type": "integer"
    },
    "groupId": {
      "type": "string",
      "format": "uuid"
    },
    "userIds": {
      "$ref": "#/components/schemas/ArrayOfIds"
    },
    "name": {
      "type": "string"
    },
    "isSmart": {
      "type": "boolean"
    }
  },
  "type": "object",
  "xml": {
    "name": "group"
  }
}