UNPKG

adpa-enterprise-framework-automation

Version:

Modular, standards-compliant Node.js/TypeScript automation framework for enterprise requirements, project, and data management. Provides CLI and API for BABOK v3, PMBOK 7th Edition, and DMBOK 2.0 (in progress). Production-ready Express.js API with TypeSpe

19 lines (18 loc) 569 B
{ "$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 }