{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AssetList", "title": "AssetList", "type": "object", "description": "A paginated list of assets in the stack.", "properties": { "assets": { "type": "array", "description": "Array of asset objects.", "items": { "$ref": "#/components/schemas/Asset" } }, "count": { "type": "integer", "description": "Total count of assets when include_count is true." } } }