rgb-cln/doc/schemas/delpay.request.json

31 lines
562 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"required": [
"payment_hash",
"status"
],
"additionalProperties": false,
"properties": {
"payment_hash": {
"type": "hex",
"description": "the hash of the *payment_preimage* which will prove payment",
"maxLength": 64,
"minLength": 64
},
"status": {
"type": "string",
"enum": [
"complete",
"failed"
]
},
"partid": {
"type": "u64"
},
"groupid": {
"type": "u64"
}
}
}