{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Json", "title": "Json", "anyOf": [ { "type": "string" }, { "type": "number", "format": "double" }, { "type": "boolean" }, { "properties": {}, "additionalProperties": { "$ref": "#/components/schemas/Json" }, "type": "object" }, { "items": { "$ref": "#/components/schemas/Json" }, "type": "array" } ], "nullable": true }