changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": true,
+ "properties": {
+ "error": {
+ "anyOf": [
+ {
+ "anyOf": [
+ {
+ "not": {}
+ },
+ {
+ "type": "string"
+ }
+ ]
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "notice": {
+ "anyOf": [
+ {
+ "anyOf": [
+ {
+ "not": {}
+ },
+ {
+ "additionalProperties": true,
+ "properties": {
+ "text": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "text",
+ "url"
+ ],
+ "type": "object"
+ }
+ ]
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "ok": {
+ "anyOf": [
+ {
+ "anyOf": [
+ {
+ "not": {}
+ },
+ {
+ "type": "boolean"
+ }
+ ]
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "resolved": {
+ "anyOf": [
+ {
+ "anyOf": [
+ {
+ "not": {}
+ },
+ {
+ "additionalProperties": true,
+ "properties": {
+ "lawfulBasisNoticeEnabled": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "lawfulBasisNoticeEnabled"
+ ],
+ "type": "object"
+ }
+ ]
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "stored": {
+ "anyOf": [
+ {
+ "anyOf": [
+ {
+ "not": {}
+ },
+ {
+ "additionalProperties": true,
+ "properties": {
+ "lawfulBasisNoticeEnabled": {
+ "type": [
+ "boolean",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "lawfulBasisNoticeEnabled"
+ ],
+ "type": "object"
+ }
+ ]
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "type": "object"
+}