{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-snow-family/refs/heads/main/json-schema/amazon-snow-family-cluster-list-entry-schema.json", "title": "ClusterListEntry", "description": "Contains a cluster's state, a cluster's ID, and other important information.", "type": "object", "properties": { "ClusterId": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The 39-character ID for the cluster that you want to list, for example CID123e4567-e89b-12d3-a456-426655440000." } ] }, "ClusterState": { "allOf": [ { "$ref": "#/components/schemas/ClusterState" }, { "description": "The current state of this cluster. For information about the state of a specific node, see JobListEntry$JobState." } ] }, "CreationDate": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The creation date for this cluster." } ] }, "Description": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "Defines an optional description of the cluster, for example Environmental Data Cluster-01." } ] } } }