registration: Allow multi-line strings in "@" note keys
Change-Id: Ifb1a0f04cc22b122ed99308c096d0ce4296e9097
This commit is contained in:
parent
e2abc63ac6
commit
39e2abd886
2 changed files with 8 additions and 1 deletions
|
|
@ -5,7 +5,10 @@
|
|||
"additionalProperties": false,
|
||||
"patternProperties": {
|
||||
"^@": {
|
||||
"type": "string",
|
||||
"type": [
|
||||
"string",
|
||||
"array"
|
||||
],
|
||||
"description": "Arbitrary notes, ignored by the parser."
|
||||
}
|
||||
},
|
||||
|
|
|
|||
|
|
@ -10,6 +10,10 @@
|
|||
"Attr": [ "test2" ]
|
||||
}
|
||||
},
|
||||
"@config notes": [
|
||||
"The line below is false.",
|
||||
"The line above is true. "
|
||||
],
|
||||
"config": {
|
||||
"MyConfigValue": {
|
||||
"value": 42,
|
||||
|
|
|
|||
Loading…
Reference in a new issue