changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "description": "List of PayPal transactions within a date range",
+ "properties": {
+ "page": {
+ "description": "Current page number",
+ "type": "number"
+ },
+ "total_items": {
+ "description": "Total number of transactions",
+ "type": "number"
+ },
+ "total_pages": {
+ "description": "Total number of pages",
+ "type": "number"
+ },
+ "transaction_details": {
+ "description": "Array of transactions",
+ "items": {
+ "properties": {
+ "payer_email": {
+ "description": "Payer email address",
+ "type": "string"
+ },
+ "payer_name": {
+ "properties": {
+ "given_name": {
+ "description": "First name",
+ "type": "string"
+ },
+ "surname": {
+ "description": "Last name",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "transaction_amount": {
+ "properties": {
+ "currency_code": {
+ "description": "Currency code (e.g., USD)",
+ "type": "string"
+ },
+ "value": {
+ "description": "Transaction amount",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "transaction_date": {
+ "description": "Transaction date in ISO 8601 format",
+ "type": "string"
+ },
+ "transaction_id": {
+ "description": "Unique transaction ID",
+ "type": "string"
+ },
+ "transaction_status": {
+ "description": "Transaction status (e.g., S, D, F)",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+}