{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "required": [], "additionalProperties": false, "properties": { "bolt11": { "type": "string", "description": "bolt11 string to get the payment details" }, "payment_hash": { "type": "hash", "description": "payment hash to get the payment details" }, "status": { "type": "string", "description": "to filter the payment by status", "enum": [ "pending", "complete", "failed" ] } } }