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",