Snowflake · Schema

StreamClone

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
name string Name of the stream
comment string user comment associated to an object in the dictionary
View JSON Schema on GitHub

JSON Schema

snowflake-streamclone-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StreamClone",
  "title": "StreamClone",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "pattern": "^\"([^\"]|\"\")+\"|[a-zA-Z_][a-zA-Z0-9_$]*$",
      "description": "Name of the stream",
      "example": "Example Title"
    },
    "comment": {
      "type": "string",
      "description": "user comment associated to an object in the dictionary",
      "example": "example_value"
    }
  },
  "required": [
    "name"
  ]
}