diff options
author | Timo Tijhof <krinklemail@gmail.com> | 2021-04-29 02:47:47 +0100 |
---|---|---|
committer | Timo Tijhof <krinklemail@gmail.com> | 2021-04-29 02:47:47 +0100 |
commit | 39e2abd886fc27b5e6c5a7358289a4e2b373a2d9 (patch) | |
tree | 366f9311e4cc4c691d7603ebedc7665be3216fa9 /docs/extension.schema.v2.json | |
parent | e2abc63ac6dbc838397e2a7975e4ebfb16fdbc21 (diff) | |
download | mediawikicore-39e2abd886fc27b5e6c5a7358289a4e2b373a2d9.tar.gz mediawikicore-39e2abd886fc27b5e6c5a7358289a4e2b373a2d9.zip |
registration: Allow multi-line strings in "@" note keys
Change-Id: Ifb1a0f04cc22b122ed99308c096d0ce4296e9097
Diffstat (limited to 'docs/extension.schema.v2.json')
-rw-r--r-- | docs/extension.schema.v2.json | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/extension.schema.v2.json b/docs/extension.schema.v2.json index 91cd8233eb24..842d509eca16 100644 --- a/docs/extension.schema.v2.json +++ b/docs/extension.schema.v2.json @@ -5,7 +5,10 @@ "additionalProperties": false, "patternProperties": { "^@": { - "type": "string", + "type": [ + "string", + "array" + ], "description": "Arbitrary notes, ignored by the parser." } }, |