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