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