Collection of expense entries.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ExpenseCollection", "title": "ExpenseCollection", "type": "object", "description": "Collection of expense entries.", "properties": { "expenses": { "type": "array", "items": { "$ref": "#/components/schemas/Expense" } } } }