Snowflake · Schema

StreamSourceView

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
append_only boolean Whether this stream is an append only stream or not
show_initial_rows boolean Whether this stream show initial rows on first consumption
base_tables array List of base tables for the stream
View JSON Schema on GitHub

JSON Schema

stream-stream-source-view-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "StreamSourceView",
  "type": "object",
  "properties": {
    "append_only": {
      "type": "boolean",
      "description": "Whether this stream is an append only stream or not"
    },
    "show_initial_rows": {
      "type": "boolean",
      "description": "Whether this stream show initial rows on first consumption"
    },
    "base_tables": {
      "type": "array",
      "description": "List of base tables for the stream"
    }
  }
}