{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/amazon-datazone/json-schema/environment-schema.json", "title": "Environment", "description": "A DataZone environment that provides data access capabilities for a project.", "type": "object", "properties": { "id": { "type": "string", "description": "The unique identifier of the environment" }, "domainId": { "type": "string" }, "projectId": { "type": "string" }, "name": { "type": "string" }, "status": { "type": "string", "enum": [ "ACTIVE", "CREATING", "DELETED" ] }, "createdAt": { "type": "string", "format": "date-time" } } }