This document serves as the authoritative mapping between system entities, their Bounded Contexts, owning services, and database schemas within the UMS enterprise ecosystem.
| Entity | Bounded Context | Service Owner (Write) | Runtime | SQL Server Schema |
| :— | :— | :— | :— | :— |
| TENANT | Identity | UMS Core API | .NET 8 | [ums_identity] |
| BRANCH | Identity | UMS Core API | .NET 8 | [ums_identity] |
| USER_ACCOUNT | Identity | UMS Core API | .NET 8 | [ums_identity] |
| ROLE | Authorization | UMS Core API | .NET 8 | [ums_authz] |
| PROFILE | Authorization | UMS Core API | .NET 8 | [ums_authz] |
| PROFILE_PERMISSION | Authorization | UMS Core API | .NET 8 | [ums_authz] |
| PERMISSION_TEMPLATE | Authorization | UMS Core API | .NET 8 | [ums_authz] |
| FUNCTIONAL_MODULE | Authorization | UMS Core API | .NET 8 | [ums_authz] |
| FUNCTIONAL_SUBMODULE| Authorization | UMS Core API | .NET 8 | [ums_authz] |
| FUNCTIONAL_OPTION | Authorization | UMS Core API | .NET 8 | [ums_authz] |
| ACTION | Authorization | UMS Core API | .NET 8 | [ums_authz] |
| SYSTEM_SUITE | Authorization | UMS Core API | .NET 8 | [ums_authz] |
| ROLE_MATURITY_STATUS | IGA | UMS Core API | .NET 8 | [ums_iga] |
| PROMOTION_REQUEST | IGA | UMS Core API | .NET 8 | [ums_iga] |
| PROMOTION_IMPACT_ANALYSIS| IGA | UMS Core API | .NET 8 | [ums_iga] |
| DOCUMENT_TYPE | Compliance | UMS Core API | .NET 8 | [ums_approval] |
| USER_DOCUMENT | Compliance | UMS Core API | .NET 8 | [ums_approval] |
| NOTIFICATION_RULE | Compliance | UMS Core API | .NET 8 | [ums_approval] |
| ACCESS_ENFORCEMENT_POLICY| Compliance | UMS Core API | .NET 8 | [ums_approval] |
| APPROVAL_WORKFLOW | Approvals | UMS Core API | .NET 8 | [ums_approval] |
| APPROVAL_REQUIRED_DOCUMENT| Approvals | UMS Core API | .NET 8 | [ums_approval] |
| APPROVAL_REQUEST | Approvals | UMS Core API | .NET 8 | [ums_approval] |
| APPROVAL_LOG | Approvals | UMS Core API | .NET 8 | [ums_approval] |
| APP_CONFIGURATION | Configuration | UMS Core API | .NET 8 | [ums_config] |
For all parameter/configuration/catalog entities (including APP_CONFIGURATION, NOTIFICATION_RULE, ACCESS_ENFORCEMENT_POLICY, APPROVAL_WORKFLOW, and future IDP_CONFIGURATION / SYSTEM_CONFIGURATION / FEATURE_FLAG records), the write owner MUST enforce:
Code, Value, DescriptionCodeDescription MUST document purpose, functional impact, expected behavior, and applicable scope.
INSERT, UPDATE, or DELETE operations on the corresponding entities.SELECT operations on ums_identity and ums_authz schemas to resolve context, but must do so through optimized views or read-only database users.[!IMPORTANT] Unified Engine Strategy: Although
architecture/blueprints/stack.mdand some early prototypes mention PostgreSQL for Node.js/NestJS components, the final authoritative decision for the UMS production product is SQL Server 2022 for all services, regardless of the runtime (.NET 8 or NestJS).Action Required: ADR-0026 must be updated to reflect this unification, removing PostgreSQL and MongoDB from the relational/NoSQL requirements for this specific codebase.