changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "description": "Full details of a PayPal invoice",
+ "properties": {
+ "amount": {
+ "properties": {
+ "currency_code": {
+ "description": "Currency code",
+ "type": "string"
+ },
+ "value": {
+ "description": "Total amount",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "create_time": {
+ "description": "Creation timestamp",
+ "type": "string"
+ },
+ "customer": {
+ "properties": {
+ "email": {
+ "description": "Customer email",
+ "type": "string"
+ },
+ "name": {
+ "description": "Customer name",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "due_date": {
+ "description": "Due date in ISO 8601 format",
+ "type": "string"
+ },
+ "id": {
+ "description": "Invoice ID",
+ "type": "string"
+ },
+ "items": {
+ "description": "Invoice line items",
+ "items": {
+ "properties": {
+ "amount": {
+ "properties": {
+ "currency_code": {
+ "type": "string"
+ },
+ "value": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "description": {
+ "description": "Item description",
+ "type": "string"
+ },
+ "name": {
+ "description": "Item name",
+ "type": "string"
+ },
+ "quantity": {
+ "description": "Item quantity",
+ "type": "string"
+ },
+ "unit_amount": {
+ "properties": {
+ "currency_code": {
+ "type": "string"
+ },
+ "value": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "number": {
+ "description": "Invoice number",
+ "type": "string"
+ },
+ "status": {
+ "description": "Invoice status",
+ "type": "string"
+ },
+ "update_time": {
+ "description": "Last update timestamp",
+ "type": "string"
+ }
+ },
+ "type": "object"
+}