Snowflake · Schema

PointOfTimeStatement

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
statement string Statement of the point of time.
View JSON Schema on GitHub

JSON Schema

snowflake-pointoftimestatement-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PointOfTimeStatement",
  "title": "PointOfTimeStatement",
  "type": "object",
  "allOf": [
    {
      "$ref": "#/components/schemas/PointOfTime"
    }
  ],
  "properties": {
    "statement": {
      "type": "string",
      "description": "Statement of the point of time.",
      "example": "example_value"
    }
  },
  "required": [
    "statement"
  ]
}