12345678910111213141516171819202122232425 |
- {
- "$schema": "http://json-schema.org/draft-04/schema#",
- "title": "verifyPaymentChannelClaimParameters",
- "type": "object",
- "properties": {
- "channel": {
- "$ref": "hash256",
- "description": "256-bit hexadecimal channel identifier."
- },
- "amount": {
- "$ref": "value",
- "description": "Amount of XRP authorized by the claim."
- },
- "signature": {
- "$ref": "signature",
- "description": "Signature of this claim."
- },
- "publicKey": {
- "$ref": "publicKey",
- "description": "Public key of the channel's sender"
- }
- },
- "additionalProperties": false,
- "required": ["channel", "amount", "signature", "publicKey"]
- }
|