# UAPF Validation Ready Template This template provides a complete Level-4 process package with validation schema support. ## Structure ``` uapf-validation-ready/ ├── enterprise/ │ └── enterprise.yaml # Enterprise-level index ├── demo-process/ # Example process package │ ├── uapf.yaml # Package configuration │ ├── bpmn/ # BPMN process models │ │ └── process.bpmn.xml # Document review workflow │ ├── dmn/ # DMN decision models │ │ └── decisions.dmn.xml # Approval requirements │ ├── cmmn/ # CMMN case models │ │ └── case.cmmn.xml # Exception handling │ ├── resources/ # Resource mappings │ │ └── mappings.yaml │ ├── metadata/ # Process metadata │ │ ├── ownership.yaml │ │ └── lifecycle.yaml │ └── docs/ # Documentation │ └── notes.md └── validation/ # Validation schemas └── schemas/ └── README.md ``` ## Process: Document Review & Approval This template demonstrates a document review and approval process with: - **BPMN Process**: Submit → Validate Format → Review → Approve/Reject → Publish - **DMN Decision**: Dynamic approval routing based on document type and value - **CMMN Case**: Exception handling for review issues - **Validation**: Schema-based validation for all artifacts ## Features - ✅ Complete Level-4 process package - ✅ Validation schema support - ✅ Multiple approval levels - ✅ Exception handling - ✅ Template variable support - ✅ Enterprise indexing ## Usage This template is used when creating new ProcessGit repositories that require validation-ready processes.