Papaya Global · Schema
Payment
A payment instruction in the Papaya Global Workforce Payments API.
PayrollGlobal WorkforceHRPaymentsEmployer of RecordContractor ManagementCompliance
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique payment instruction identifier |
| correlation_id | string | Optional client-provided correlation identifier |
| description | string | Human-readable description of the payment |
| purpose | string | Purpose or reason for the payment |
| source | object | Source wallet or group for the payment |
| target | object | Target beneficiary for the payment |
| amount | object | Payment amount details |
| execution | object | Payment execution scheduling |
| approved | boolean | Whether the payment has been approved |
| final | boolean | Whether the payment is finalized |
| attachments | array | Attached document references |
| user_tags | object | Custom key-value tags set by the user |
| info | object | Payment status and processing information |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/papaya-global/main/json-schema/payment.json",
"title": "Payment",
"description": "A payment instruction in the Papaya Global Workforce Payments API.",
"type": "object",
"required": ["source", "target", "amount", "execution"],
"properties": {
"id": {
"type": "string",
"description": "Unique payment instruction identifier"
},
"correlation_id": {
"type": "string",
"description": "Optional client-provided correlation identifier"
},
"description": {
"type": "string",
"description": "Human-readable description of the payment"
},
"purpose": {
"type": "string",
"description": "Purpose or reason for the payment"
},
"source": {
"type": "object",
"description": "Source wallet or group for the payment",
"properties": {
"wallet": {
"type": "string",
"description": "Wallet ID to fund the payment from"
},
"group": {
"type": "string",
"description": "Payment group ID"
}
}
},
"target": {
"type": "object",
"description": "Target beneficiary for the payment",
"properties": {
"beneficiary": {
"type": "string",
"description": "Beneficiary ID to send the payment to"
}
}
},
"amount": {
"type": "object",
"description": "Payment amount details",
"required": ["value", "currency"],
"properties": {
"value": {
"type": "number",
"minimum": 0,
"description": "Numeric payment amount"
},
"currency": {
"type": "string",
"pattern": "^[A-Z]{3}$",
"description": "ISO 4217 currency code"
}
}
},
"execution": {
"type": "object",
"description": "Payment execution scheduling",
"properties": {
"date": {
"type": "string",
"format": "date",
"description": "Scheduled execution date (YYYY-MM-DD)"
}
}
},
"approved": {
"type": "boolean",
"description": "Whether the payment has been approved"
},
"final": {
"type": "boolean",
"description": "Whether the payment is finalized"
},
"attachments": {
"type": "array",
"description": "Attached document references",
"items": {
"type": "string"
}
},
"user_tags": {
"type": "object",
"description": "Custom key-value tags set by the user",
"additionalProperties": {
"type": "string"
}
},
"info": {
"type": "object",
"description": "Payment status and processing information",
"properties": {
"status": {
"type": "string",
"description": "Current payment status"
},
"funding": {
"type": "object",
"description": "Funding details"
},
"credit": {
"type": "object",
"description": "Credit details"
},
"rate": {
"type": "number",
"description": "Exchange rate applied"
},
"fees": {
"type": "object",
"description": "Fee breakdown"
}
}
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/payment"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.