{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GraphQLResponse", "title": "GraphQLResponse", "type": "object", "properties": { "data": { "type": "object", "description": "Response data from the GraphQL operation.", "additionalProperties": true }, "errors": { "type": "array", "description": "Array of GraphQL errors if any occurred.", "items": { "$ref": "#/components/schemas/GraphQLError" } } } }