mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-02 18:35:00 +01:00
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"
|
||
|
}
|
||
|
}
|
||
|
}
|