0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-11 16:31:23 +00:00
netdata_netdata/integrations/schemas/collection-multi-module.json
2023-07-25 14:50:45 +03:00

20 lines
386 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"plugin_name": {
"type": "string"
},
"modules": {
"type": "array",
"description": "A list of single module templates",
"items": {
"$ref": "./collection-single-module.json"
}
}
},
"required": [
"plugin_name",
"modules"
]
}