Revision

A revision of a data set, representing a snapshot of data at a point in time.

Data ExchangeData MarketplaceThird-Party DataAnalyticsSubscriptions

Properties

Name Type Description
Id string
Arn string
DataSetId string
Comment string
Finalized boolean
Tags object
CreatedAt string
UpdatedAt string
View JSON Schema on GitHub

JSON Schema

revision-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-data-exchange/json-schema/revision-schema.json",
  "title": "Revision",
  "description": "A revision of a data set, representing a snapshot of data at a point in time.",
  "type": "object",
  "properties": {
    "Id": {
      "type": "string"
    },
    "Arn": {
      "type": "string"
    },
    "DataSetId": {
      "type": "string"
    },
    "Comment": {
      "type": "string"
    },
    "Finalized": {
      "type": "boolean"
    },
    "Tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    },
    "CreatedAt": {
      "type": "string",
      "format": "date-time"
    },
    "UpdatedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}