{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/VariableValue", "title": "VariableValue", "type": "object", "required": [ "name", "value" ], "properties": { "name": { "type": "string" }, "value": { "oneOf": [ { "type": "number" }, { "type": "string" }, { "type": "boolean" }, { "type": "null" } ] } } }