Snowflake · Schema

StreamingError

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
message string A description of the error
code string The Snowflake error code categorizing the error
request_id string Unique request ID
View JSON Schema on GitHub

JSON Schema

cortex-analyst-streaming-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "StreamingError",
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "description": "A description of the error"
    },
    "code": {
      "type": "string",
      "description": "The Snowflake error code categorizing the error"
    },
    "request_id": {
      "type": "string",
      "description": "Unique request ID"
    }
  }
}