1
0

Initial template import

This commit is contained in:
ProcessGit Templates
2026-02-05 21:19:43 +00:00
commit b4d44661e0
15 changed files with 1176 additions and 0 deletions

52
README.md Normal file
View File

@@ -0,0 +1,52 @@
# 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.