DataLakeDataset

A data lake dataset

ERP IntegrationLogisticsMachine LearningSupply Chain

Properties

Name Type Description
instanceId string The instance identifier
namespace string The namespace containing the dataset
name string The dataset name
description string The dataset description
schema object The dataset schema
partitionSpec object The partition specification
createdTime string
lastModifiedTime string
View JSON Schema on GitHub

JSON Schema

amazon-supply-chain-data-lake-dataset-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-supply-chain/refs/heads/main/json-schema/amazon-supply-chain-data-lake-dataset-schema.json",
  "title": "DataLakeDataset",
  "description": "A data lake dataset",
  "type": "object",
  "properties": {
    "instanceId": {
      "type": "string",
      "description": "The instance identifier",
      "example": "inst-abc12345"
    },
    "namespace": {
      "type": "string",
      "description": "The namespace containing the dataset",
      "example": "asc"
    },
    "name": {
      "type": "string",
      "description": "The dataset name",
      "example": "product"
    },
    "description": {
      "type": "string",
      "description": "The dataset description"
    },
    "schema": {
      "type": "object",
      "description": "The dataset schema"
    },
    "partitionSpec": {
      "type": "object",
      "description": "The partition specification"
    },
    "createdTime": {
      "type": "string",
      "format": "date-time"
    },
    "lastModifiedTime": {
      "type": "string",
      "format": "date-time"
    }
  }
}