Snowflake · Schema

StreamSourceExternalTable

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
insert_only boolean Whether this stream is an insert only stream or not
point_of_time object Point of time for the stream
View JSON Schema on GitHub

JSON Schema

snowflake-streamsourceexternaltable-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StreamSourceExternalTable",
  "title": "StreamSourceExternalTable",
  "type": "object",
  "allOf": [
    {
      "$ref": "#/components/schemas/StreamSource"
    }
  ],
  "properties": {
    "insert_only": {
      "type": "boolean",
      "description": "Whether this stream is an insert only stream or not",
      "example": true
    },
    "point_of_time": {
      "$ref": "#/components/schemas/PointOfTime",
      "description": "Point of time for the stream"
    }
  }
}