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