Snowflake · Schema

PointOfTime

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
point_of_time_type string Type of the point of time. Possible values include: timestamp, offset, statement
reference string Relation to the point of time. Currently, the API supports `at` and `before`
View JSON Schema on GitHub

JSON Schema

stream-point-of-time-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PointOfTime",
  "type": "object",
  "properties": {
    "point_of_time_type": {
      "type": "string",
      "description": "Type of the point of time. Possible values include: timestamp, offset, statement"
    },
    "reference": {
      "type": "string",
      "description": "Relation to the point of time.  Currently, the API supports `at` and `before`"
    }
  }
}