Envestnet · Schema

UpdateCategoryRequest

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
highLevelCategoryName string
id integer
source string
categoryName string
View JSON Schema on GitHub

JSON Schema

envestnet-updatecategoryrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateCategoryRequest",
  "title": "UpdateCategoryRequest",
  "required": [
    "id",
    "source"
  ],
  "type": "object",
  "properties": {
    "highLevelCategoryName": {
      "type": "string"
    },
    "id": {
      "minimum": 1,
      "exclusiveMinimum": false,
      "type": "integer",
      "format": "int64"
    },
    "source": {
      "type": "string",
      "enum": [
        "SYSTEM",
        "USER"
      ]
    },
    "categoryName": {
      "type": "string"
    }
  }
}