Snowflake · Schema

TargetLag

Specifies the schedule for periodically refreshing the dynamic table.

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
type string Type of lag, can be either USER_DEFINED or DOWNSTREAM.
View JSON Schema on GitHub

JSON Schema

snowflake-targetlag-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TargetLag",
  "title": "TargetLag",
  "type": "object",
  "description": "Specifies the schedule for periodically refreshing the dynamic table.",
  "properties": {
    "type": {
      "description": "Type of lag, can be either USER_DEFINED or DOWNSTREAM.",
      "type": "string"
    }
  },
  "discriminator": {
    "propertyName": "type",
    "mapping": {
      "USER_DEFINED": "UserDefinedLag",
      "DOWNSTREAM": "DownstreamLag"
    }
  }
}