changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "archived": {
+ "description": "exam result is archived",
+ "type": "boolean"
+ },
+ "certified": {
+ "description": "result is eligible for certification and also certified",
+ "type": "boolean"
+ },
+ "eligible": {
+ "description": "result is eligible for certification",
+ "type": "boolean"
+ },
+ "expires": {
+ "description": "date of expiration, only present if the result is certified and expiration is configured",
+ "type": "string"
+ },
+ "play": {
+ "description": "Quiz play identification string",
+ "type": "string"
+ },
+ "serial": {
+ "description": "serial number of the certificate, only present if the result is certified and serial numbering is enabled",
+ "type": "string"
+ },
+ "user": {
+ "description": "user identification string",
+ "type": "string"
+ }
+ },
+ "required": [
+ "play",
+ "user",
+ "archived",
+ "eligible",
+ "certified"
+ ],
+ "type": "object"
+}