diff --git a/schema/course.model.schema b/schema/course.model.schema index 72987c0f..0142b1fa 100644 --- a/schema/course.model.schema +++ b/schema/course.model.schema @@ -338,6 +338,22 @@ "inputType": "Text", "required": true, "translatable": true + }, + "required": { + "type": "string", + "title": "", + "default": "Required", + "inputType": "Text", + "required": true, + "translatable": true + }, + "optional": { + "type": "string", + "title": "", + "default": "Optional", + "inputType": "Text", + "required": true, + "translatable": true } } }, diff --git a/schema/course.schema.json b/schema/course.schema.json index e9817b1f..82790908 100644 --- a/schema/course.schema.json +++ b/schema/course.schema.json @@ -298,6 +298,22 @@ "_adapt": { "translatable": true } + }, + "required": { + "type": "string", + "title": "Required", + "default": "Required", + "_adapt": { + "translatable": true + } + }, + "optional": { + "type": "string", + "title": "Optional", + "default": "Optional", + "_adapt": { + "translatable": true + } } } },