{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/JsonContextVariable", "title": "JsonContextVariable", "description": "A JSON object with custom content.", "properties": { "type": { "description": "Type of custom context variable.", "type": "string" }, "value": { "description": "A JSON object containing custom content.", "type": "object" } }, "required": [ "type" ], "type": "object" }