changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "value": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "audiobook_count": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "description": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "type": "string"
+ },
+ "slug": {
+ "maxLength": 120,
+ "minLength": 1,
+ "pattern": "^[a-z0-9]+(-[a-z0-9]+)*$",
+ "type": "string"
+ },
+ "url": {
+ "format": "uri",
+ "pattern": "^https\\:\\/\\/audioknihy\\.cz\\/",
+ "type": "string"
+ }
+ },
+ "required": [
+ "slug",
+ "name",
+ "description",
+ "audiobook_count",
+ "url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "value"
+ ],
+ "type": "object"
+}