registration: Allow multi-line strings in "@" note keys

Change-Id: Ifb1a0f04cc22b122ed99308c096d0ce4296e9097
This commit is contained in:
Timo Tijhof 2021-04-29 02:47:47 +01:00
parent e2abc63ac6
commit 39e2abd886
2 changed files with 8 additions and 1 deletions

View file

@ -5,7 +5,10 @@
"additionalProperties": false,
"patternProperties": {
"^@": {
"type": "string",
"type": [
"string",
"array"
],
"description": "Arbitrary notes, ignored by the parser."
}
},

View file

@ -10,6 +10,10 @@
"Attr": [ "test2" ]
}
},
"@config notes": [
"The line below is false.",
"The line above is true. "
],
"config": {
"MyConfigValue": {
"value": 42,