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
51 lines (44 loc) • 1.18 kB
JavaScript
/**
* Generates the content for the Enterprise Data Dictionary document.
* @param context Project context and relationships
* @returns Markdown string for the Enterprise Data Dictionary
*/
export function generateContent(context) {
return `# Enterprise Data Dictionary for ${context.projectName}
## Introduction
- Purpose and Scope
- How to Use This Dictionary
- Update and Maintenance Process
## Business Glossary
- Business Terms and Definitions
- Business Rules
- Related Terms
- Business Owners
## Technical Dictionary
- Database Tables and Views
- Data Elements and Attributes
- Data Types and Formats
- Relationships and Dependencies
## Data Lineage
- Source to Target Mappings
- Transformation Rules
- Data Flow Diagrams
- Impact Analysis
## Data Quality Rules
- Validation Rules
- Quality Metrics
- Data Quality Issues
- Improvement Initiatives
## Security and Compliance
- Data Classification
- Access Controls
- Privacy Requirements
- Audit Trails
## Appendices
- Data Dictionary Standards
- Naming Conventions
- Change History
- Contact Information
`;
}
//# sourceMappingURL=EnterpriseDataDictionaryTemplate.js.map