4.6 KiB
title | slug | hidden | createdAt | updatedAt |
---|---|---|---|---|
Writing JSON Schemas | writing-json-schemas | false | 2023-01-25T05:46:43.718Z | 2024-01-18T15:36:28.523Z |
A JSON Schema is a JSON file which defines what a structure should look like; in our case we use it in our testsuite to check that they match command requests and responses, and also use it to generate our documentation.
Yes, schemas are horrible to write, but they're damn useful. We can only use a subset of the full JSON Schema Specification, but if you find that limiting it's probably a sign that you should simplify your JSON output.
Updating a Schema
If you add a field, you should add it to the field schema, and you must add "added": "VERSION" (where VERSION is the next release version!).
Similarly, if you deprecate a field, add "deprecated": "VERSION" (where VERSION is the next release version) to the field. They will be removed two versions later.
How to Write a Schema
Name the schema doc/schemas/lightning-command
.json: the testsuite should pick it up and check all invocations of that command against it.
The core lightning RPC commands use custom schema specification defined in rpc-schema-draft.
I recommend copying an existing one to start. If something goes wrong, try tools/fromscheme.py doc/schemas/lightning-command
.json to see how far it got before it died.
You should always list all fields which are always present in "required"
.
We extend the basic types; see fixtures.py.
In addition, before committing a new schema or a new version of it, make sure that it is well formatted. If you don't want do it by hand, use make fmt-schema
that uses jq under the hood.
Using Conditional Fields
Sometimes one field is only sometimes present; if you can, you should make the schema know when it should (and should not!) be there.
There are two kinds of conditional fields expressable: fields which are only present if another field is present, or fields only present if another field has certain values.
To add conditional fields:
- Do not mention them in the main "properties" section.
- Set
"additionalProperties": true
for the main "properties" section. - Add an
"allOf": [
array at the same height as"properties"'
. Inside this place oneif
/then
for each conditional field. - If a field simply requires another field to be present, use the pattern
"required": [ "field" ]
inside the "if". - If a field requires another field value, use the pattern
"properties": { "field": { "enum": [ "val1", "val2" ] } }
inside the "if". - Inside the "then", use
"additionalProperties": false
and place empty{}
for all the other possible properties. - If you haven't covered all the possibilties with
if
statements, add anelse
with"additionalProperties": false
which simply mentions every allowable property. This ensures that the fields can only be present when conditions are met.
Exceptions in dynamic schema generation
- If response (
RETURN VALUE
) should not be generated dynamically and you want it to be a custom text message instead. You can usereturn_value_notes
to add custom text with emptyproperties
. Examples:setpsbtversion
,commando
,recover
. - If only one of multiple request parameters can be provided then utilize
oneOfMany
key with condition defining arrays. For example,plugin
command defines it as"oneOfMany": [["plugin", "directory"]]
and it prints the parameter output as[*plugin|directory*]
. - If request parameters are paired with other parameter and either all of them can be passed
to the command or none of them; then utilize
pairedWith
key with condition defining arrays. For example,delpay
command defines it as"pairedWith": [["partid", "groupid"]]
and it prints the parameter output as[*partid* *groupid*]
. -
- If some of the optional request parameters are dependent upon other optional parameters,
use
dependentUpon
key where object key can be mapped with the array of dependent params. For example,listforwards
command hasstart
andlimit
params dependent uponindex
and it can be defined as"dependentUpon": { "index": ["start", "limit"] }
in the json and it will generate the markdown syntax as[*index* [*start*] [*limit*]]
.
- If some of the optional request parameters are dependent upon other optional parameters,
use
JSON Drinking Game!
- Sip whenever you have an additional comma at the end of a sequence.
- Sip whenever you omit a comma in a sequence because you cut & paste.
- Skull whenever you wish JSON had comments.