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

snowflake-streamingerror-schema.json Raw ↑
{
  "$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"
    }
  }
}