From cd98724c650d5e64e5cec3cacb89e2b45d132a6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BAlia=20Mir=20Pedrol?= Date: Fri, 14 Nov 2025 16:14:50 +0100 Subject: [PATCH] add the topics section to the meta-schema.json --- modules/meta-schema.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/modules/meta-schema.json b/modules/meta-schema.json index cf4260f24ad5..b5d28ce094fa 100644 --- a/modules/meta-schema.json +++ b/modules/meta-schema.json @@ -110,6 +110,38 @@ } } }, + "topics": { + "type": "object", + "description": "Topics of the module", + "patternProperties": { + ".*": { + "type": "array", + "items": { + "oneOf": [ + { + "type": "object", + "patternProperties": { + ".*": { + "$ref": "#/definitions/elementProperties" + } + } + }, + { + "type": "array", + "items": { + "type": "object", + "patternProperties": { + ".*": { + "$ref": "#/definitions/elementProperties" + } + } + } + } + ] + } + } + } + }, "tools": { "type": "array", "description": "Tools used by the module",