{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ParametersSchema", "title": "ParametersSchema", "properties": { "type": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Type", "default": "object" }, "properties": { "additionalProperties": { "$ref": "#/components/schemas/ParameterProperties" }, "type": "object", "title": "Properties" }, "required": { "items": { "type": "string" }, "type": "array", "title": "Required" } }, "type": "object", "required": [ "properties" ] }