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 invoices with number, customer, amount, due date, and status",
+ "items": {
+ "properties": {
+ "CustomerRef": {
+ "description": "Reference to customer",
+ "type": "object"
+ },
+ "DocNumber": {
+ "description": "Invoice number",
+ "type": "string"
+ },
+ "DueDate": {
+ "description": "Due date",
+ "type": "string"
+ },
+ "Id": {
+ "description": "Invoice ID",
+ "type": "string"
+ },
+ "TotalAmt": {
+ "description": "Total invoice amount",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+ }
+ ],
+ "type": "object"
+}