{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cloudformation/refs/heads/main/json-structure/cloudformation-list-stacks-output-structure.json", "name": "ListStacksOutput", "description": "ListStacksOutput schema", "type": "object", "properties": { "StackSummaries": { "type": "array", "items": { "type": "object", "properties": { "StackId": { "type": "string" }, "StackName": { "type": "string" }, "StackStatus": { "type": "string" }, "CreationTime": { "type": "string", "format": "date-time" }, "DeletionTime": { "type": "string", "format": "date-time" }, "LastUpdatedTime": { "type": "string", "format": "date-time" }, "TemplateDescription": { "type": "string" } } } }, "NextToken": { "type": "string" } } }