From 3e14056ce0f1d0f7520fd0e466acb40dc83db55c Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Fri, 4 Aug 2023 12:24:53 +0200 Subject: [PATCH] doc: The SCB fields are hex-encoded binary TLVs, not strings This makes them smaller when passing them over a binary-capable encoding. --- doc/schemas/staticbackup.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/schemas/staticbackup.schema.json b/doc/schemas/staticbackup.schema.json index 73b7009e7..bc9daeb2e 100644 --- a/doc/schemas/staticbackup.schema.json +++ b/doc/schemas/staticbackup.schema.json @@ -9,7 +9,7 @@ "scb": { "type": "array", "items": { - "type": "string", + "type": "hex", "description": "SCB of a channel in TLV format" } }