core-lightning/doc/schemas/staticbackup.schema.json
Christian Decker 3e14056ce0 doc: The SCB fields are hex-encoded binary TLVs, not strings
This makes them smaller when passing them over a binary-capable encoding.
2023-08-06 12:34:36 +09:30

17 lines
312 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"required": [
"scb"
],
"properties": {
"scb": {
"type": "array",
"items": {
"type": "hex",
"description": "SCB of a channel in TLV format"
}
}
}
}