core-lightning/doc/schemas/makesecret.schema.json
Rusty Russell fa127a4071 doc/schemas: remove unnecessary length restrictions.
If we have a specific type (not just "hex") the length is implied.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2023-01-30 15:15:41 -06:00

15 lines
283 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"required": [
"secret"
],
"properties": {
"secret": {
"type": "secret",
"description": "the pseudorandom key derived from HSM_secret"
}
}
}