iSpring Learn · Schema

AddAppraisalQuestionRequest

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
text string
isRequired boolean
targetRoles array
View JSON Schema on GitHub

JSON Schema

AddAppraisalQuestionRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AddAppraisalQuestionRequest",
  "required": [
    "text",
    "isRequired",
    "targetRoles"
  ],
  "properties": {
    "text": {
      "type": "string"
    },
    "isRequired": {
      "type": "boolean"
    },
    "targetRoles": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AppraisalSessionReviewerRole"
      }
    }
  },
  "type": "object"
}