Snowflake · Schema

ErrorResponse

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
message string Error message returned by the server
code string Error code.
error_code string Error code, same as `code` above. This property has been deprecated and will be removed in a future release, but is temporarily supported for for short-term backward compatibility.
request_id string Unique request ID.
View JSON Schema on GitHub

JSON Schema

common-error-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ErrorResponse",
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "description": "Error message returned by the server"
    },
    "code": {
      "type": "string",
      "description": "Error code."
    },
    "error_code": {
      "type": "string",
      "description": "Error code, same as `code` above. This property has been deprecated and will be removed in a future release, but is temporarily supported for for short-term backward compatibility."
    },
    "request_id": {
      "type": "string",
      "description": "Unique request ID."
    }
  }
}