An error occurred while loading the file. Please try again.
-
Kumar Gauraw authoredb951fa63
{
"$id": "question-schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Question",
"type": "object",
"required": [
"name",
"code",
"mimeType",
"primaryCategory"
],
"properties": {
"name": {
"type": "string",
"minLength": 5
},
"code": {
"type": "string"
},
"description": {
"type": "string"
},
"mimeType": {
"type": "string",
"enum": [
"application/vnd.sunbird.question"
]
},
"primaryCategory": {
"type": "string"
},
"additionalCategories": {
"type": "array",
"items": {
"type": "string"
}
},
"visibility": {
"type": "string",
"default": "Default",
"enum": [
"Default",
"Parent",
"Private",
"Protected"
]
},
"copyright": {
"type": "string"
},
"license": {
"type": "string",
"default": "CC BY 4.0"
},
"lockKey": {
"type": "string"
},
"assets": {
"type": "array"
},
"audience": {
"type": "array",
"items": {
"type": "string",
"enum": [
"Student",
"Teacher",
"Administrator",
"Parent"
],
7172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
"default": "Student"
}
},
"author": {
"type": "string"
},
"owner": {
"type": "string"
},
"attributions": {
"type": "array"
},
"consumerId": {
"type": "string"
},
"contentEncoding": {
"type": "string",
"enum": [
"gzip",
"identity"
],
"default": "gzip"
},
"contentDisposition": {
"type": "string",
"enum": [
"inline",
"online",
"attachment",
"online-only"
],
"default": "inline"
},
"appIcon": {
"type": "string",
"format": "url"
},
"publishChecklist": {
"type": "array"
},
"publishComment": {
"type": "string"
},
"compatibilityLevel": {
"type": "number",
"default": 4
},
"status": {
"type": "string",
"enum": [
"Draft",
"Review",
"Live",
"Retired"
],
"default": "Draft"
},
"prevState": {
"type": "string"
},
"prevStatus": {
"type": "string"
},
"lastStatusChangedOn": {
"type": "string"
},
"keywords": {
"type": "array",
"items": {
"type": "string"
141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
}
},
"pkgVersion": {
"type": "number"
},
"version": {
"type": "number",
"default": 1
},
"versionKey": {
"type": "string"
},
"language": {
"type": "array",
"items": {
"type": "string",
"enum": [
"English",
"Hindi",
"Assamese",
"Bengali",
"Gujarati",
"Kannada",
"Malayalam",
"Marathi",
"Nepali",
"Odia",
"Punjabi",
"Tamil",
"Telugu",
"Urdu",
"Sanskrit",
"Maithili",
"Other"
]
},
"default": ["English"]
},
"languageCode": {
"type": "array"
},
"channel": {
"type": "string"
},
"framework": {
"type": "string"
},
"subject" : {
"type": "array"
},
"medium" : {
"type": "array"
},
"board" : {
"type": "string"
},
"gradeLevel" : {
"type": "array"
},
"topic" : {
"type": "array"
},
"boardIds": {
"type": "array",
"items": {
"type": "string"
}
},
"gradeLevelIds": {
"type": "array",
211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
"items": {
"type": "string"
}
},
"subjectIds": {
"type": "array",
"items": {
"type": "string"
}
},
"mediumIds": {
"type": "array",
"items": {
"type": "string"
}
},
"topicsIds": {
"type": "array",
"items": {
"type": "string"
}
},
"targetFWIds": {
"type": "array",
"items": {
"type": "string"
}
},
"targetBoardIds": {
"type": "array",
"items": {
"type": "string"
}
},
"targetGradeLevelIds": {
"type": "array",
"items": {
"type": "string"
}
},
"targetSubjectIds": {
"type": "array",
"items": {
"type": "string"
}
},
"targetMediumIds": {
"type": "array",
"items": {
"type": "string"
}
},
"targetTopicIds": {
"type": "array",
"items": {
"type": "string"
}
},
"se_FWIds": {
"type": "array",
"items": {
"type": "string"
}
},
"se_boardIds": {
"type": "array",
"items": {
"type": "string"
}
},
281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
"se_subjectIds": {
"type": "array",
"items": {
"type": "string"
}
},
"se_mediumIds": {
"type": "array",
"items": {
"type": "string"
}
},
"se_topicIds": {
"type": "array",
"items": {
"type": "string"
}
},
"se_gradeLevelIds": {
"type": "array",
"items": {
"type": "string"
}
},
"se_boards": {
"type": "array",
"items": {
"type": "string"
}
},
"se_subjects": {
"type": "array",
"items": {
"type": "string"
}
},
"se_mediums": {
"type": "array",
"items": {
"type": "string"
}
},
"se_topics": {
"type": "array",
"items": {
"type": "string"
}
},
"se_gradeLevels": {
"type": "array",
"items": {
"type": "string"
}
},
"createdOn": {
"type": "string"
},
"createdFor": {
"type": "array"
},
"createdBy": {
"type": "string"
},
"artifactUrl": {
"type": "string",
"format": "url"
},
"lastUpdatedOn": {
"type": "string"
},
351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420
"lastUpdatedBy": {
"type": "string"
},
"lastSubmittedOn": {
"type": "string"
},
"lastSubmittedBy": {
"type": "string"
},
"publisher": {
"type": "string"
},
"lastPublishedOn": {
"type": "string"
},
"lastPublishedBy": {
"type": "string"
},
"publishError": {
"type": "string"
},
"reviewError": {
"type": "string"
},
"body": {
"type": "string",
"description": "External Property"
},
"editorState": {
"type": "object",
"description": "External Property"
},
"answer": {
"type": "string",
"description": "External Property"
},
"solutions": {
"type": "array",
"items": {
"type": "string"
},
"description": "External Property"
},
"instructions": {
"type": "object",
"description": "External Property"
},
"hints": {
"type": "array",
"items": {
"type": "string"
},
"description": "External Property"
},
"media": {
"type": "array",
"items": {
"type": "object"
},
"description": "External Property"
},
"responseDeclaration": {
"type": "object",
"description": "External Property"
},
"interactions": {
"type": "object",
"description": "External Property"
},
421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490
"qType": {
"type": "string",
"enum": [
"MCQ",
"FTB",
"SA"
]
},
"scoringMode": {
"type": "string",
"enum": [
"system",
"none"
]
},
"qumlVersion": {
"type": "number"
},
"timeLimit": {
"type": "number"
},
"maxScore": {
"type": "number"
},
"showTimer": {
"type": "string",
"enum": [
"Yes",
"No"
],
"default": "No"
},
"showFeedback": {
"type": "string",
"enum": [
"Yes",
"No"
],
"default": "No"
},
"showSolutions": {
"type": "string",
"enum": [
"Yes",
"No"
],
"default": "No"
},
"interactionTypes":{
"type": "array",
"items": {
"type": "string",
"enum": [
"choice",
"text",
"select",
"date",
"file-upload",
"canvas"
]
}
},
"templateId":{
"type": "string"
},
"bloomsLevel" : {
"description": "Cognitive processes involved to answer the question set.",
"type": "string",
491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560
"enum": [
"remember",
"understand",
"apply",
"analyse",
"evaluate",
"create"
]
},
"feedback": {
"type": "object"
},
"responseProcessing": {
"type": "object"
},
"templateDeclaration": {
"type": "object"
},
"dailySummaryReportEnabled": {
"type": "string",
"enum": [
"Yes",
"No"
]
},
"allowAnonymousAccess": {
"type": "string",
"enum": [
"Yes",
"No"
],
"default": "Yes"
},
"termsAndConditions": {
"type": "string"
},
"expectedDuration": {
"type": "number"
},
"completionCriteria": {
"type": "object"
},
"collaborators": {
"type": "array"
},
"semanticVersion": {
"type": "string"
},
"schemaVersion": {
"type": "string"
},
"requestChanges": {
"type": "string"
},
"variants": {
"type": "object"
},
"rejectComment": {
"type": "string"
},
"showRemarks": {
"type": "string",
"enum": [
"Yes",
"No"
]
},
"remarks": {
"type": "object"
561562563564565566567568569570571572573574575576577578579580581582583584585586587
},
"showEvidence": {
"type": "string",
"enum": [
"Yes",
"No"
]
},
"evidence": {
"type": "object"
},
"accessibility": {
"type": "array",
"items": {
"type": "object"
}
},
"origin": {
"type": "string"
},
"originData": {
"type": "object"
}
},
"additionalProperties": false
}