Changes for page User Class Diagram
Last modified by Robert Schaub on 2025/12/24 20:34
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,122 +1,57 @@ 1 1 **User Class Diagram** 2 2 3 -This diagram shows the user role hierarchy in FactHarbor v0.9.1, with corrected inheritance. 3 +{{plantuml}} 4 +@startuml 5 +abstract class User { 6 + +UserID: String 7 + +DisplayName: String 8 + +Email: String 9 + +Type: Enum 10 +} 4 4 5 -== Critical: Corrected Inheritance == 12 +class TechnicalUser { 13 + +SystemName: String 14 +} 6 6 7 - **IMPORTANTCORRECTION**:8 - *Moderatorderives from**Reviewer** (NOT from Expert)9 - * Maintainer derives from **Contributor** (NOT from Reviewer or Moderator)16 +class ContributingUser { 17 + +PrimaryRole: String 18 +} 10 10 11 -**Two Independent Tracks from Contributor**: 20 +class TrustedContributor { 21 + +CertificationLevel: String 22 +} 12 12 13 - **Content Track**:Contributor →Reviewer→ (Auditor | Expert | Moderator)14 - *Focus:Content quality,validation, community management15 - * Skills: Domain expertise, review, moderation24 +class Reviewer { 25 + +Domain: String 26 +} 16 16 17 -**Technical Track**: Contributor → Maintainer 18 -* Focus: System operations, configuration, deployment 19 -* Skills: DevOps, system administration, technical configuration 20 -* **Independent from content review** - Maintainers don't need review skills 28 +class Expert { 29 + +ExpertiseArea: String 30 +} 21 21 22 -**System Track**: Reader → Technical User 23 -* Not human users - automated processes 24 -* Examples: AKEL instances, sync bots, monitors 25 -* Managed by Maintainers 32 +class FederationAdmin { 33 + +Permissions: List 34 +} 26 26 27 -== Role Hierarchy Explanation == 36 +class FederationNode { 37 + +NodeID: String 38 + +Status: String 39 +} 28 28 29 -**Base: Reader** 30 -* Anyone, no login required 31 -* Foundation for all other roles 32 -* Can browse, search, compare, flag, and **automatically submit claims** 41 +class ReviewAction { 42 + +ActionID: String 43 + +Timestamp: DateTime 44 + +ActionType: Enum 45 +} 33 33 34 -**Technical User** (system type, extends Reader) 35 -* **Not human users** - automated system processes 36 -* Examples: AKEL instances, federation sync bots, backup services, monitoring 37 -* Can perform automated operations 38 -* AKEL is primary implementation of Technical User pattern 47 +User <|-- TechnicalUser 48 +User <|-- ContributingUser 49 +ContributingUser <|-- TrustedContributor 50 +ContributingUser <|-- Reviewer 51 +Reviewer <|-- Expert 52 +TechnicalUser <|-- FederationAdmin 39 39 40 -**Contributor** (extends Reader) 41 -* Registered human users 42 -* Can submit evidence, propose scenarios, participate in discussions 43 -* All Reader capabilities plus contribution rights 44 -* **Two-way branching**: Can become Reviewer (content track) or Maintainer (technical track) 45 - 46 -**Reviewer** (is-a Contributor - Content Track) 47 -* Trusted community members on **content track** 48 -* Can review and approve content 49 -* Can validate AI-generated content (Mode 2 → Mode 3 for Tier B/C) 50 -* Participates in audit sampling 51 -* **Three-way branching**: Can specialize as Auditor, Expert, or Moderator 52 - 53 -**Maintainer** (is-a Contributor - Technical Track) 54 -* Core technical team members on **technical track** 55 -* System configuration and deployment authority 56 -* Does NOT require review skills 57 -* Manages Technical Users (creates AKEL instances, sync bots, etc.) 58 -* **Independent from content review hierarchy** 59 - 60 -**Specialized Reviewer Roles**: 61 - 62 -**Auditor** (specialized Reviewer - QA track) 63 -* Dedicated quality assurance role 64 -* Reviews sampled AI-generated content 65 -* Validates quality gate enforcement 66 -* Provides feedback for system improvement 67 - 68 -**Expert** (specialized Reviewer - domain track) 69 -* Subject matter specialists 70 -* Final authority for Tier A content in their domain 71 -* Can define domain-specific standards 72 -* Required for Tier A "Human-Reviewed" status 73 - 74 -**Moderator** (specialized Reviewer - process track) 75 -* Community management focus 76 -* Handles abuse and disputes 77 -* Manages users and permissions 78 -* Oversees audit system 79 -* **Independent from domain expertise and technical operations** 80 - 81 -**AKEL** (Technical User implementation) 82 -* AI system implementing Technical User interface 83 -* Creates drafts for Contributor review 84 -* Subject to Auditor oversight 85 -* Never bypasses human authority 86 - 87 -== Key Design Principles == 88 - 89 -**Why Maintainer derives from Contributor (not Reviewer)**: 90 -* **Different skill set**: Technical operations ≠ Content review 91 -* **Separation of concerns**: Technical authority independent from editorial authority 92 -* **Flexibility**: Can have technical experts without review experience 93 -* **Realistic**: System admin skills and content review skills are distinct 94 -* **Cleaner**: Maintainer manages Technical Users (including AKEL) - natural fit on technical track 95 - 96 -**Why Moderator derives from Reviewer (not Expert)**: 97 -* Moderators handle **process** (community management, disputes) not **domain expertise** 98 -* Experts focus on **subject matter** (medical, legal, scientific validation) 99 -* Allows independent oversight of content quality (Experts) vs community behavior (Moderators) 100 -* Moderators don't need domain expertise to handle community issues 101 - 102 -**Technical User Pattern**: 103 -* **Purpose**: Represents automated system processes 104 -* **Examples**: AKEL (AI processing), Federation sync bots, Scheduled audit tasks, Backup services, Monitoring systems, API integrations 105 -* **Managed by**: Maintainers create and configure Technical Users 106 -* **Authority**: Limited to programmatic operations, no human-level decisions 107 - 108 -**Progressive Trust**: 109 -* Reader → Contributor (registration) 110 -* Contributor → Reviewer (content track) OR Maintainer (technical track) 111 -* Reviewer → Auditor/Expert/Moderator (specializations) 112 -* All appointments based on demonstrated competence 113 - 114 -**Human Authority**: 115 -* Technical Users assist but don't make human-level decisions 116 -* Human Reviewers validate AI outputs 117 -* Experts have final say on Tier A content 118 -* Moderators have final say on community matters 119 -* Maintainers have final say on technical configuration 120 - 121 -{{include reference="Test.FactHarborV09.Specification.Diagrams.User Class Diagram_Mermaid.WebHome"}} 122 - 54 +FederationAdmin --> FederationNode : administers 55 +User --> ReviewAction : performs 56 +@enduml 57 +{{/plantuml}}