{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StreamingError", "title": "StreamingError", "type": "object", "properties": { "message": { "type": "string", "description": "A description of the error", "example": "example_value" }, "code": { "type": "string", "description": "The Snowflake error code categorizing the error", "example": "example_value" }, "request_id": { "type": "string", "description": "Unique request ID", "example": "500123" } } }