multi-module.json 382 B

12345678910111213141516
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema#",
  3. "type": "object",
  4. "properties": {
  5. "plugin_name": {
  6. "type": "string"
  7. },
  8. "modules": {
  9. "type": "array",
  10. "description": "A list of single module templates",
  11. "items": {
  12. "$ref": "./single-module.json"
  13. }
  14. }
  15. }
  16. }