addedInput schema / $schema
Added value: +"http://json-schema.org/draft-07/schema#"
addedInput schema / properties / active
Added value: +{
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "optional filter to only include active exams (if true) or inactive exams (if false)"
+}
addedInput schema / properties / limit / maximum
Added value: +9007199254740991
addedInput schema / properties / limit / minimum
Added value: +-9007199254740991
changedInput schema / properties / limit / type
Previous value: -"number"New value: +"integer"
addedInput schema / properties / page / maximum
Added value: +9007199254740991
addedInput schema / properties / page / minimum
Added value: +-9007199254740991
changedInput schema / properties / page / type
Previous value: -"number"New value: +"integer"
removedInput schema / required
Removed value: -[]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "exams": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "active": {
+ "description": "exam is active",
+ "type": "boolean"
+ },
+ "exam": {
+ "description": "exam identification string",
+ "type": "string"
+ },
+ "id": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "external unique exam identifier (if set for the exam)"
+ },
+ "name": {
+ "description": "title of the exam",
+ "type": "string"
+ }
+ },
+ "required": [
+ "exam",
+ "name",
+ "active"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "exams"
+ ],
+ "type": "object"
+}