iSpring Learn · Schema

CourseField

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
fieldId string
fieldCustomId string
fieldLabel string
fieldType object
View JSON Schema on GitHub

JSON Schema

CourseField.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CourseField",
  "required": [
    "fieldId",
    "fieldCustomId",
    "fieldLabel",
    "fieldType"
  ],
  "properties": {
    "fieldId": {
      "type": "string",
      "format": "uuid"
    },
    "fieldCustomId": {
      "type": "string"
    },
    "fieldLabel": {
      "type": "string"
    },
    "fieldType": {
      "$ref": "#/components/schemas/CourseFieldType"
    }
  },
  "type": "object",
  "xml": {
    "name": "courseField",
    "wrapped": true
  }
}