Stellar · Schema
Receiver
BlockchainCryptocurrencyDecentralized ExchangeLedgerPaymentsSmart ContractsWeb3
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| phone_number | string | |
| external_id | string | |
| string | ||
| created_at | string | |
| total_payments | string | |
| successful_payments | string | |
| failed_payments | string | |
| remaining_payments | string | |
| registered_wallets | string | |
| received_amounts | array | |
| wallets | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://developers.stellar.org/schemas/sdp/Receiver.json",
"title": "Receiver",
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "f83bb638-dda4-41e6-80c9-d03e6eec2aef"
},
"phone_number": {
"type": "string",
"example": "+15552368475"
},
"external_id": {
"type": "string",
"example": "usr12334"
},
"email": {
"type": "string",
"example": "[email protected]"
},
"created_at": {
"type": "string",
"example": "2023-02-03T10:45:51.000Z"
},
"total_payments": {
"type": "string",
"example": "2"
},
"successful_payments": {
"type": "string",
"example": "2"
},
"failed_payments": {
"type": "string",
"example": "0"
},
"remaining_payments": {
"type": "string",
"example": "0"
},
"registered_wallets": {
"type": "string",
"example": "1"
},
"received_amounts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Amount"
}
},
"wallets": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ReceiverWallet"
}
}
}
}