{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PivotSuggestions", "title": "PivotSuggestions", "required": [ "pivot", "suggestions" ], "type": "object", "properties": { "pivot": { "type": "string" }, "suggestions": { "type": "array", "items": { "$ref": "#/components/schemas/Query" } } } }