changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "description": "List of PayPal invoices",
+ "properties": {
+ "items": {
+ "description": "Array of invoices",
+ "items": {
+ "properties": {
+ "amount": {
+ "properties": {
+ "currency_code": {
+ "description": "Currency code",
+ "type": "string"
+ },
+ "value": {
+ "description": "Total invoice amount",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "create_time": {
+ "description": "Creation timestamp",
+ "type": "string"
+ },
+ "due_date": {
+ "description": "Due date in ISO 8601 format",
+ "type": "string"
+ },
+ "id": {
+ "description": "Invoice ID",
+ "type": "string"
+ },
+ "number": {
+ "description": "Invoice number",
+ "type": "string"
+ },
+ "status": {
+ "description": "Invoice status (e.g., DRAFT, SENT, PAID, CANCELLED)",
+ "type": "string"
+ },
+ "update_time": {
+ "description": "Last update timestamp",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "page": {
+ "description": "Current page number",
+ "type": "number"
+ },
+ "total_items": {
+ "description": "Total number of invoices",
+ "type": "number"
+ },
+ "total_pages": {
+ "description": "Total number of pages",
+ "type": "number"
+ }
+ },
+ "type": "object"
+}