{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Processor Config Schema",
  "type": "object",
  "patternProperties": {
    "^.+$": {
      "type": "object",
      "properties": {
        "module": { "type": "string", "pattern": "^\\.\\.\\/documentTemplates/.+\\.(ts|js)#\\w+$" },
        "dependencies": { "type": "array", "items": { "type": "string" } },
        "priority": { "type": "number" }
      },
      "required": ["module", "priority"],
      "additionalProperties": false
    }
  },
  "additionalProperties": false
}
