changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "results": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "attempt": {
+ "description": "index of attempt",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "play": {
+ "description": "Quiz play identification string",
+ "type": "string"
+ },
+ "points_correct": {
+ "description": "total points scored",
+ "type": "number"
+ },
+ "points_total": {
+ "description": "total points",
+ "type": "number"
+ },
+ "questions_correct": {
+ "description": "number of correctly answered questions",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "questions_total": {
+ "description": "total number of questions asked",
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "successful": {
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "attempt passed grading threshold (if applicable)"
+ },
+ "time_end": {
+ "description": "end time",
+ "type": "string"
+ },
+ "time_start": {
+ "description": "start time",
+ "type": "string"
+ },
+ "user": {
+ "description": "user identification string",
+ "type": "string"
+ },
+ "valid": {
+ "description": "result is valid",
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "play",
+ "user",
+ "time_start",
+ "time_end",
+ "questions_total",
+ "questions_correct",
+ "points_total",
+ "points_correct",
+ "attempt",
+ "valid",
+ "successful"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "results"
+ ],
+ "type": "object"
+}