mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-21 22:31:48 +01:00
Some rpc commands did not have their corresponding *.request.json files to generate the consolidated json
16 lines
486 B
JSON
16 lines
486 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [],
|
|
"properties": {
|
|
"start_time": {
|
|
"type": "u64",
|
|
"description": "UNIX timestamp (in seconds) to filter events after the provided timestamp. Defaults to zero"
|
|
},
|
|
"end_time": {
|
|
"type": "u64",
|
|
"description": "UNIX timestamp (in seconds) to filter events up to and at the provided timestamp. Defaults to max-int"
|
|
}
|
|
}
|
|
}
|