changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "value": {
+ "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": {
+ "maxLength": 120,
+ "minLength": 1,
+ "pattern": "^[a-z0-9]+(-[a-z0-9]+)*$",
+ "type": "string"
+ }
+ },
+ "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"
+ }
+ },
+ "required": [
+ "value"
+ ],
+ "type": "object"
+}