{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BudgetSummary", "title": "BudgetSummary", "properties": { "type": { "type": "string", "description": "Set budget at an entity level. This entity can be a merchant, a master-level category, or a detail-level-category.", "enum": [ "VIEW,MERCHANT,CATEGORY,DETAIL_CATEGORY" ] }, "dateRange": { "allOf": [ { "$ref": "#/components/schemas/DateRange" } ], "readOnly": true }, "budgetDetail": { "type": "array", "description": "An BudgetDetail object containing budget details.", "items": { "$ref": "#/components/schemas/BudgetDetail" } } } }