Envestnet · Schema

BudgetSummary

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
type string Set budget at an entity level. This entity can be a merchant, a master-level category, or a detail-level-category.
dateRange object
budgetDetail array An BudgetDetail object containing budget details.
View JSON Schema on GitHub

JSON Schema

envestnet-budgetsummary-schema.json Raw ↑
{
  "$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"
      }
    }
  }
}