Snowflake · Schema

The warning object

Represents a warning within a chat.

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
message string A human-readable message describing the warning
View JSON Schema on GitHub

JSON Schema

snowflake-warning-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Warning",
  "title": "The warning object",
  "type": "object",
  "description": "Represents a warning within a chat.",
  "properties": {
    "message": {
      "type": "string",
      "description": "A human-readable message describing the warning",
      "example": "example_value"
    }
  }
}