Amazon DataZone · Schema

Project

A DataZone project that serves as a container for data assets and environments.

Data CatalogData GovernanceData ManagementData SharingAnalytics

Properties

Name Type Description
id string The unique identifier of the project
domainId string
name string
description string
createdAt string
View JSON Schema on GitHub

JSON Schema

project-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-datazone/json-schema/project-schema.json",
  "title": "Project",
  "description": "A DataZone project that serves as a container for data assets and environments.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier of the project"
    },
    "domainId": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}