aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorTimo Tijhof <krinklemail@gmail.com>2021-04-29 02:47:47 +0100
committerTimo Tijhof <krinklemail@gmail.com>2021-04-29 02:47:47 +0100
commit39e2abd886fc27b5e6c5a7358289a4e2b373a2d9 (patch)
tree366f9311e4cc4c691d7603ebedc7665be3216fa9 /docs
parente2abc63ac6dbc838397e2a7975e4ebfb16fdbc21 (diff)
downloadmediawikicore-39e2abd886fc27b5e6c5a7358289a4e2b373a2d9.tar.gz
mediawikicore-39e2abd886fc27b5e6c5a7358289a4e2b373a2d9.zip
registration: Allow multi-line strings in "@" note keys
Change-Id: Ifb1a0f04cc22b122ed99308c096d0ce4296e9097
Diffstat (limited to 'docs')
-rw-r--r--docs/extension.schema.v2.json5
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."
}
},