changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "oneOf": [
+ {
+ "properties": {
+ "error": {
+ "description": "Error code if connection not configured",
+ "type": "string"
+ },
+ "message": {
+ "description": "Error message with setup instructions",
+ "type": "string"
+ }
+ },
+ "required": [
+ "error",
+ "message"
+ ],
+ "type": "object"
+ },
+ {
+ "properties": {
+ "QueryResponse": {
+ "description": "Array of accounts with names, types, balances, and classifications",
+ "items": {
+ "properties": {
+ "AccountType": {
+ "description": "Account type (asset/liability/equity/etc)",
+ "type": "string"
+ },
+ "CurrentBalance": {
+ "description": "Current account balance",
+ "type": "number"
+ },
+ "Id": {
+ "description": "Account ID",
+ "type": "string"
+ },
+ "Name": {
+ "description": "Account name",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+ }
+ ],
+ "type": "object"
+}