mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
563910e667
Adds schema definitions and manpages for bkpr- commands; also renames the commands to all start with 'bkpr-', so they're easier to identify/ make runes about.
26 lines
499 B
JSON
26 lines
499 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"unevaluatedProperties": false,
|
|
"required": [
|
|
"csv_file",
|
|
"csv_format"
|
|
],
|
|
"properties": {
|
|
"csv_file": {
|
|
"type": "string",
|
|
"description": "File that the csv was generated to"
|
|
},
|
|
"csv_format": {
|
|
"type": "string",
|
|
"enum": [
|
|
"cointracker",
|
|
"koinly",
|
|
"harmony",
|
|
"quickbooks"
|
|
],
|
|
"description": "Format to print csv as"
|
|
}
|
|
}
|
|
}
|