A list of stacks.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StackList", "title": "StackList", "type": "object", "description": "A list of stacks.", "properties": { "stacks": { "type": "array", "description": "Array of stack objects.", "items": { "$ref": "#/components/schemas/Stack" } } } }