Snowflake · Schema

BindVariable

A bind variable value with its Snowflake data type.

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
type string The Snowflake data type of the bind variable (e.g. FIXED, TEXT, BOOLEAN, DATE, TIMESTAMP_LTZ, TIMESTAMP_NTZ, TIMESTAMP_TZ).
value string The value of the bind variable as a string.
View JSON Schema on GitHub

JSON Schema

snowflake-sql-rest-bind-variable-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "BindVariable",
  "type": "object",
  "description": "A bind variable value with its Snowflake data type.",
  "properties": {
    "type": {
      "type": "string",
      "description": "The Snowflake data type of the bind variable (e.g. FIXED, TEXT, BOOLEAN, DATE, TIMESTAMP_LTZ, TIMESTAMP_NTZ, TIMESTAMP_TZ)."
    },
    "value": {
      "type": "string",
      "description": "The value of the bind variable as a string."
    }
  }
}