changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "assignments": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "assignment": {
+ "description": "assignment identification string",
+ "type": "string"
+ },
+ "ends": {
+ "description": "when the assignment submission ends",
+ "type": "string"
+ },
+ "link": {
+ "description": "link to the assignment page",
+ "type": "string"
+ },
+ "name": {
+ "description": "title of the assignment",
+ "type": "string"
+ },
+ "starts": {
+ "description": "when the assignment submission starts",
+ "type": "string"
+ },
+ "status": {
+ "description": "assignment and submission state (INACTIVE, ACTIVE, STARTED, SUBMITTED, GRADED)",
+ "enum": [
+ "INACTIVE",
+ "ACTIVE",
+ "STARTED",
+ "SUBMITTED",
+ "GRADED"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "assignment",
+ "name",
+ "link",
+ "status",
+ "starts",
+ "ends"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "assignments"
+ ],
+ "type": "object"
+}