Conceptual Data Modeling Skill
Use When
- translating business language into conceptual entities, relationships, identifiers, ownership, and invariants before logical database design; use database-design for physical schema decisions.
- Use this procedure when the required source artefacts are available and
Conceptual data model is the next lifecycle deliverable.
Do Not Use When
- Use
database-design when that neighbouring route owns the decision or deliverable.
- Do not invent missing project evidence, standards clauses, thresholds, or stakeholder decisions.
Required Inputs
| Artefact |
Source or provider |
Required? |
Behaviour when missing |
| Business glossary, processes, rules, requirements, and sample records |
Domain owners and requirements evidence |
Yes |
Stop the affected step, name the missing source, and return only a qualified gap record. |
Workflow
- Inspect the required inputs and log the exact sources, versions, and unresolved assumptions.
- Apply this skill's existing domain workflow and decision rules to produce
Conceptual data model.
- Stop when a required source, accountable decision owner, or deterministic test oracle is absent.
- Recover by preserving valid work, marking the blocked scope, and returning the narrowest qualified artefact plus the next evidence needed.
Outputs
| Artefact |
Consumer |
Acceptance condition |
| Conceptual data model |
Requirements, API, database, privacy, and reporting design |
Required sections are populated, source links resolve, and every material requirement or decision has an observable review or test oracle. |
Evidence Produced
| Evidence |
Reviewer |
Acceptance condition |
Source, decision, trace, and validation record for Conceptual data model |
Requirements quality reviewer |
Inputs used, decisions made, checks run, failures, and unassessed items are explicit. |
Capability and permission boundaries
Read and search are required. Editing is allowed only when the request authorises creation or repair of the named requirements artefact. Publishing, production mutation, destructive action, spending, and certification require explicit authority.
Degraded mode
Fallback: if a required file, reviewer, standard source, network check, renderer, or execution capability is unavailable, return the narrowest useful qualified result and mark the affected check not assessed; never convert an unassessed check into a pass.
Decision Rules
| Choice or condition |
Action |
Failure or risk avoided |
| Two concepts share a label but have different lifecycles or owners |
Model them separately and reconcile terminology in the glossary. |
Conflated entities and broken business rules. |
| Required inputs and test oracles are complete |
Continue through the existing workflow and record evidence. |
A deliverable whose acceptance cannot be reproduced. |
| A mandatory source or owner is missing |
Stop the affected branch and issue a qualified gap record. |
Fabricated context or unauthorised decisions. |
Quality Standards
- Preserve stable identifiers and bidirectional traceability from project evidence to
Conceptual data model and its acceptance checks.
- Apply ISO/IEEE measures only with a named metric, method, threshold, evidence source, and responsible reviewer; run the anti-slop gate before release.
Anti-Patterns
- Producing
Conceptual data model from assumed context. Fix: cite the project source or mark the scope blocked.
- Accepting a material requirement without a deterministic oracle. Fix: add a measurable result, boundary, and verification method.
- Crossing into
database-design without routing the decision. Fix: hand off the named input and preserve trace links.
- Treating an unavailable check as passed. Fix: mark it
not assessed and state the release consequence.
- Claiming standards, statutory, or stakeholder approval without evidence. Fix: cite the source and reviewer or qualify the claim.
References
Overview
This skill translates business language from feature descriptions, business rules, and elicitation artifacts into a formal conceptual data model. The model captures entities, relationships, cardinality, and business-level attributes without prescribing implementation details. The output serves as the authoritative data requirements baseline that feeds into Phase 03 database design skills.
When to Use This Skill
- After requirements analysis has classified and prioritized the requirements set
- When feature descriptions reference data objects that need formal definition
- When business rules imply entity relationships that must be explicitly modeled
- Before database design begins, to ensure the logical structure is stakeholder-approved
- When Master Data Management requirements demand a shared entity vocabulary
Quick Reference
| Attribute |
Value |
| Inputs |
projects/<ProjectName>/_context/features.md, business_rules.md, elicitation_log.md, glossary.md |
| Output |
projects/<ProjectName>/<phase>/<document>/conceptual_data_model.md |
| Tone |
Technical, precise, business-facing; no implementation-specific terms |
| Standards |
IEEE 1016-2009, IEEE 29148-2018, Book 2 Ch.5-7 |
Input Files
| File |
Location |
Required |
Purpose |
| features.md |
projects/<ProjectName>/_context/features.md |
Yes |
Feature descriptions containing entity references |
| business_rules.md |
projects/<ProjectName>/_context/business_rules.md |
Yes |
Business rules defining entity constraints |
| elicitation_log.md |
projects/<ProjectName>/_context/elicitation_log.md |
No |
Raw stakeholder statements with domain vocabulary |
| glossary.md |
projects/<ProjectName>/_context/glossary.md |
No |
Controlled vocabulary for entity and attribute naming |
Output Files
| File |
Location |
Description |
| conceptual_data_model.md |
projects/<ProjectName>/<phase>/<document>/conceptual_data_model.md |
Complete conceptual ER model with Mermaid diagrams, entity catalog, and data quality rules |
Core Instructions
Follow these steps in order. Halt and notify the user if a required input file is missing.
Step 1: Read and Catalog Context Files
Read features.md, business_rules.md, and optionally elicitation_log.md and glossary.md from projects/<ProjectName>/_context/. If glossary.md exists, load it as the controlled vocabulary for entity and attribute naming. Log every file path read.
Step 2: Entity Identification
Apply noun analysis to all input artifacts to identify candidate business entities:
- Extract Nouns: Scan feature descriptions, business rules, and elicitation notes for recurring nouns and noun phrases.
- Filter Candidates: Remove nouns that represent attributes (simple data values), actors (external to the system), or synonyms of already-identified entities.
- Validate Against Glossary: If
glossary.md exists, confirm entity names match the controlled vocabulary. Flag mismatches with [GLOSSARY-MISMATCH].
- Assign Identifiers: Assign each confirmed entity a unique identifier (e.g., ENT-001).
Produce an Entity Candidate Table:
| ID |
Entity Name |
Source |
Status |
Notes |
| ENT-001 |
Customer |
features.md line 12 |
Confirmed |
|
| ENT-002 |
Invoice |
business_rules.md BR-05 |
Confirmed |
|
See references/er-modeling-guide.md for entity identification techniques and naming conventions.
Step 3: Relationship Definition
For each pair of related entities, define the relationship:
- Identify Verb Phrases: Extract verbs connecting entities in business rules (e.g., "Customer places Order").
- Determine Cardinality: Assign cardinality using standard notation:
1:1 (one-to-one)
1:M (one-to-many)
M:M (many-to-many)
- Determine Optionality: Mark each side as mandatory (must participate) or optional (may participate).
- Document Relationship Constraints: Record any business rules that constrain the relationship (e.g., "An Order shall contain at least one Line Item").
Produce a Relationship Table:
| Relationship |
Entity A |
Cardinality |
Entity B |
Optionality |
Governing Rule |
| places |
Customer |
1:M |
Order |
A: mandatory, B: mandatory |
BR-003 |
| contains |
Order |
1:M |
LineItem |
A: mandatory, B: mandatory |
BR-007 |
Step 4: Attribute Documentation
For each entity, document attributes at the business level. Do NOT specify data types, column names, or storage details.
| Attribute |
Description |
Business Rule |
Data Quality Rule |
Required |
| Customer Name |
Full legal name of the customer |
BR-001 |
Completeness |
Yes |
| Email Address |
Primary contact email |
BR-002 |
Uniqueness, Conformity |
Yes |
Each attribute SHALL include:
- A plain-language description
- The governing business rule (if any)
- The applicable data quality dimension (see Step 5)
- Whether the attribute is required or optional
Step 5: Apply Data Quality Rules
Evaluate every entity and attribute against six data quality dimensions per Book 2:
| Dimension |
Definition |
Measurement Criterion |
| Completeness |
All required attributes have values |
Percentage of non-null required fields |
| Consistency |
Same data represented the same way across contexts |
Cross-reference check across entity instances |
| Conformity |
Data adheres to defined formats and standards |
Regex or format validation pass rate |
| Accuracy |
Data correctly represents the real-world entity |
Stakeholder verification sampling rate |
| Timeliness |
Data is current and updated within acceptable latency |
Maximum age threshold (e.g., < 24 hours) |
| Uniqueness |
No duplicate entity instances exist |
Duplicate detection rate across key fields |
For each entity, produce a Data Quality Profile documenting which dimensions apply and the business-level acceptance threshold.
See references/data-quality-rules.md for measurement criteria and business rule mapping.
Step 6: Generate Mermaid ER Diagrams
Produce one or more Mermaid erDiagram blocks that visually represent the conceptual model:
erDiagram
CUSTOMER ||--o{ ORDER : places
ORDER ||--|{ LINE_ITEM : contains
PRODUCT ||--o{ LINE_ITEM : "is referenced by"
CUSTOMER {
string customer_name
string email_address
string phone_number
}
ORDER {
date order_date
string order_status
}
Follow Crow's Foot notation for cardinality. Split into multiple diagrams if the model exceeds 15 entities per diagram for readability.
See references/er-modeling-guide.md for Mermaid erDiagram syntax and notation conventions.
Step 7: Master Data Management Assessment (Optional)
If multiple features reference the same core entities (e.g., Customer, Product), assess MDM requirements:
- Identify golden record candidates (entities shared across subsystems)
- Define entity resolution rules for matching and deduplication
- Assign data stewardship roles from
stakeholders.md
- Document cross-system integration requirements
See references/mdm-requirements.md for MDM assessment guidance.
Step 8: Generate Conceptual Data Model Document
Write the completed model to projects/<ProjectName>/<phase>/<document>/conceptual_data_model.md using the output format below. Log summary statistics: total entities, relationships, attributes, and data quality rules defined.
Output Format Specification
The generated conceptual_data_model.md SHALL contain the following sections:
# Conceptual Data Model: [Project Name]
## 1. Document Information
## 2. Model Summary
### 2.1 Scope and Objectives
### 2.2 Input Artifacts Analyzed
### 2.3 Key Findings
## 3. Entity Catalog
### 3.1 Entity Identification Table
### 3.2 Entity Descriptions
## 4. Relationship Model
### 4.1 Relationship Table
### 4.2 ER Diagram (Mermaid)
## 5. Attribute Dictionary
### 5.1 Entity-Attribute Tables
### 5.2 Business Rule Mappings
## 6. Data Quality Profile
### 6.1 Quality Dimensions by Entity
### 6.2 Acceptance Thresholds
## 7. Master Data Management (if applicable)
## 8. Glossary Alignment
## 9. Recommendations and Next Steps
## 10. Appendix: Standards Traceability
Common Pitfalls
- Mixing conceptual and physical modeling: This skill produces a business-level model. Do not specify data types, indexes, or storage engines. Those belong in Phase 03 database design.
- Missing M:M resolution: Many-to-many relationships require an associative entity at the logical level. Document the M:M relationship here; resolution occurs downstream.
- Attribute overload: Include only business-meaningful attributes. Internal system fields (created_at, updated_at, surrogate keys) are implementation details.
- Ignoring optionality: Cardinality without optionality is incomplete. Always state whether each side of a relationship is mandatory or optional.
- Glossary drift: If entity names diverge from
glossary.md, ambiguity propagates into every downstream artifact.
Verification Checklist
Integration
| Direction |
Skill |
Relationship |
| Upstream |
02-requirements-engineering/fundamentals/during/04-* |
Consumes classified requirements |
| Downstream |
03-design-documentation/04-database-design |
Feeds entity model to physical database design |
| Downstream |
02-requirements-engineering/fundamentals/during/06-* |
Feeds entities to CRUD matrix patterns |
| Downstream |
02-requirements-engineering/waterfall/04-* |
Feeds data interfaces to interface specification |
Standards Compliance
| Standard |
Governs |
| IEEE 1016-2009 |
Software design descriptions and data design viewpoints |
| IEEE 29148-2018 |
Data requirements and information model requirements |
| Book 2 Ch.5-7 |
Conceptual data architecture and quality dimensions |
Resources
references/er-modeling-guide.md -- Entity identification, relationship types, Mermaid syntax
references/data-quality-rules.md -- Six data quality dimensions with measurement criteria
references/mdm-requirements.md -- Master Data Management requirements and golden record rules
1---2name: 05-conceptual-data-modeling3description: Use when translating business language into conceptual entities, relationships, identifiers, ownership, and invariants before logical database design; use database-design for physical schema decisions.4---56# Conceptual Data Modeling Skill78<!-- local-contract-start -->9<!-- dual-compat-start -->10## Use When1112- translating business language into conceptual entities, relationships, identifiers, ownership, and invariants before logical database design; use database-design for physical schema decisions.13- Use this procedure when the required source artefacts are available and `Conceptual data model` is the next lifecycle deliverable.1415## Do Not Use When1617- Use `database-design` when that neighbouring route owns the decision or deliverable.18- Do not invent missing project evidence, standards clauses, thresholds, or stakeholder decisions.1920## Required Inputs2122| Artefact | Source or provider | Required? | Behaviour when missing |23| --- | --- | --- | --- |24| Business glossary, processes, rules, requirements, and sample records | Domain owners and requirements evidence | Yes | Stop the affected step, name the missing source, and return only a qualified gap record. |2526## Workflow27281. Inspect the required inputs and log the exact sources, versions, and unresolved assumptions.292. Apply this skill's existing domain workflow and decision rules to produce `Conceptual data model`.303. Stop when a required source, accountable decision owner, or deterministic test oracle is absent.314. Recover by preserving valid work, marking the blocked scope, and returning the narrowest qualified artefact plus the next evidence needed.3233## Outputs3435| Artefact | Consumer | Acceptance condition |36| --- | --- | --- |37| Conceptual data model | Requirements, API, database, privacy, and reporting design | Required sections are populated, source links resolve, and every material requirement or decision has an observable review or test oracle. |3839## Evidence Produced4041| Evidence | Reviewer | Acceptance condition |42| --- | --- | --- |43| Source, decision, trace, and validation record for `Conceptual data model` | Requirements quality reviewer | Inputs used, decisions made, checks run, failures, and unassessed items are explicit. |4445## Capability and permission boundaries4647Read and search are required. Editing is allowed only when the request authorises creation or repair of the named requirements artefact. Publishing, production mutation, destructive action, spending, and certification require explicit authority.4849## Degraded mode5051Fallback: if a required file, reviewer, standard source, network check, renderer, or execution capability is unavailable, return the narrowest useful qualified result and mark the affected check `not assessed`; never convert an unassessed check into a pass.5253## Decision Rules5455| Choice or condition | Action | Failure or risk avoided |56| --- | --- | --- |57| Two concepts share a label but have different lifecycles or owners | Model them separately and reconcile terminology in the glossary. | Conflated entities and broken business rules. |58| Required inputs and test oracles are complete | Continue through the existing workflow and record evidence. | A deliverable whose acceptance cannot be reproduced. |59| A mandatory source or owner is missing | Stop the affected branch and issue a qualified gap record. | Fabricated context or unauthorised decisions. |6061## Quality Standards6263- Preserve stable identifiers and bidirectional traceability from project evidence to `Conceptual data model` and its acceptance checks.64- Apply ISO/IEEE measures only with a named metric, method, threshold, evidence source, and responsible reviewer; run the anti-slop gate before release.6566## Anti-Patterns6768- Producing `Conceptual data model` from assumed context. Fix: cite the project source or mark the scope blocked.69- Accepting a material requirement without a deterministic oracle. Fix: add a measurable result, boundary, and verification method.70- Crossing into `database-design` without routing the decision. Fix: hand off the named input and preserve trace links.71- Treating an unavailable check as passed. Fix: mark it `not assessed` and state the release consequence.72- Claiming standards, statutory, or stakeholder approval without evidence. Fix: cite the source and reviewer or qualify the claim.7374## References7576- [Skill authoring and release standard](../../../../docs/skill-authoring-standard.md)77- [Data Quality Rules](references/data-quality-rules.md)78- [Er Modeling Guide](references/er-modeling-guide.md)79- [Mdm Requirements](references/mdm-requirements.md)80<!-- dual-compat-end -->81<!-- local-contract-end -->8283## Overview8485This skill translates business language from feature descriptions, business rules, and elicitation artifacts into a formal conceptual data model. The model captures entities, relationships, cardinality, and business-level attributes without prescribing implementation details. The output serves as the authoritative data requirements baseline that feeds into Phase 03 database design skills.8687## When to Use This Skill8889- After requirements analysis has classified and prioritized the requirements set90- When feature descriptions reference data objects that need formal definition91- When business rules imply entity relationships that must be explicitly modeled92- Before database design begins, to ensure the logical structure is stakeholder-approved93- When Master Data Management requirements demand a shared entity vocabulary9495## Quick Reference9697| Attribute | Value |98|---------------|------------------------------------------------------------------------|99| **Inputs** | `projects/<ProjectName>/_context/features.md`, `business_rules.md`, `elicitation_log.md`, `glossary.md` |100| **Output** | `projects/<ProjectName>/<phase>/<document>/conceptual_data_model.md` |101| **Tone** | Technical, precise, business-facing; no implementation-specific terms |102| **Standards** | IEEE 1016-2009, IEEE 29148-2018, Book 2 Ch.5-7 |103104## Input Files105106| File | Location | Required | Purpose |107|--------------------|-------------------------------------------|----------|--------------------------------------------------|108| features.md | `projects/<ProjectName>/_context/features.md` | Yes | Feature descriptions containing entity references |109| business_rules.md | `projects/<ProjectName>/_context/business_rules.md` | Yes | Business rules defining entity constraints |110| elicitation_log.md | `projects/<ProjectName>/_context/elicitation_log.md` | No | Raw stakeholder statements with domain vocabulary |111| glossary.md | `projects/<ProjectName>/_context/glossary.md` | No | Controlled vocabulary for entity and attribute naming |112113## Output Files114115| File | Location | Description |116|---------------------------|----------------------------------------|------------------------------------------------|117| conceptual_data_model.md | `projects/<ProjectName>/<phase>/<document>/conceptual_data_model.md` | Complete conceptual ER model with Mermaid diagrams, entity catalog, and data quality rules |118119## Core Instructions120121Follow these steps in order. Halt and notify the user if a required input file is missing.122123### Step 1: Read and Catalog Context Files124125Read `features.md`, `business_rules.md`, and optionally `elicitation_log.md` and `glossary.md` from `projects/<ProjectName>/_context/`. If `glossary.md` exists, load it as the controlled vocabulary for entity and attribute naming. Log every file path read.126127### Step 2: Entity Identification128129Apply noun analysis to all input artifacts to identify candidate business entities:1301311. **Extract Nouns:** Scan feature descriptions, business rules, and elicitation notes for recurring nouns and noun phrases.1322. **Filter Candidates:** Remove nouns that represent attributes (simple data values), actors (external to the system), or synonyms of already-identified entities.1333. **Validate Against Glossary:** If `glossary.md` exists, confirm entity names match the controlled vocabulary. Flag mismatches with `[GLOSSARY-MISMATCH]`.1344. **Assign Identifiers:** Assign each confirmed entity a unique identifier (e.g., ENT-001).135136Produce an Entity Candidate Table:137138| ID | Entity Name | Source | Status | Notes |139|---------|-------------|-------------------------|-----------|----------------|140| ENT-001 | Customer | features.md line 12 | Confirmed | |141| ENT-002 | Invoice | business_rules.md BR-05 | Confirmed | |142143See `references/er-modeling-guide.md` for entity identification techniques and naming conventions.144145### Step 3: Relationship Definition146147For each pair of related entities, define the relationship:1481491. **Identify Verb Phrases:** Extract verbs connecting entities in business rules (e.g., "Customer places Order").1502. **Determine Cardinality:** Assign cardinality using standard notation:151 - `1:1` (one-to-one)152 - `1:M` (one-to-many)153 - `M:M` (many-to-many)1543. **Determine Optionality:** Mark each side as mandatory (must participate) or optional (may participate).1554. **Document Relationship Constraints:** Record any business rules that constrain the relationship (e.g., "An Order shall contain at least one Line Item").156157Produce a Relationship Table:158159| Relationship | Entity A | Cardinality | Entity B | Optionality | Governing Rule |160|---------------------|-----------|-------------|------------|------------------|----------------|161| places | Customer | 1:M | Order | A: mandatory, B: mandatory | BR-003 |162| contains | Order | 1:M | LineItem | A: mandatory, B: mandatory | BR-007 |163164### Step 4: Attribute Documentation165166For each entity, document attributes at the business level. Do NOT specify data types, column names, or storage details.167168| Attribute | Description | Business Rule | Data Quality Rule | Required |169|-----------------|------------------------------------|---------------|-------------------|----------|170| Customer Name | Full legal name of the customer | BR-001 | Completeness | Yes |171| Email Address | Primary contact email | BR-002 | Uniqueness, Conformity | Yes |172173Each attribute SHALL include:174- A plain-language description175- The governing business rule (if any)176- The applicable data quality dimension (see Step 5)177- Whether the attribute is required or optional178179### Step 5: Apply Data Quality Rules180181Evaluate every entity and attribute against six data quality dimensions per Book 2:182183| Dimension | Definition | Measurement Criterion |184|---------------|---------------------------------------------------------|-----------------------------------------------|185| Completeness | All required attributes have values | Percentage of non-null required fields |186| Consistency | Same data represented the same way across contexts | Cross-reference check across entity instances |187| Conformity | Data adheres to defined formats and standards | Regex or format validation pass rate |188| Accuracy | Data correctly represents the real-world entity | Stakeholder verification sampling rate |189| Timeliness | Data is current and updated within acceptable latency | Maximum age threshold (e.g., < 24 hours) |190| Uniqueness | No duplicate entity instances exist | Duplicate detection rate across key fields |191192For each entity, produce a Data Quality Profile documenting which dimensions apply and the business-level acceptance threshold.193194See `references/data-quality-rules.md` for measurement criteria and business rule mapping.195196### Step 6: Generate Mermaid ER Diagrams197198Produce one or more Mermaid `erDiagram` blocks that visually represent the conceptual model:199200```mermaid201erDiagram202 CUSTOMER ||--o{ ORDER : places203 ORDER ||--|{ LINE_ITEM : contains204 PRODUCT ||--o{ LINE_ITEM : "is referenced by"205 CUSTOMER {206 string customer_name207 string email_address208 string phone_number209 }210 ORDER {211 date order_date212 string order_status213 }214```215216Follow Crow's Foot notation for cardinality. Split into multiple diagrams if the model exceeds 15 entities per diagram for readability.217218See `references/er-modeling-guide.md` for Mermaid erDiagram syntax and notation conventions.219220### Step 7: Master Data Management Assessment (Optional)221222If multiple features reference the same core entities (e.g., Customer, Product), assess MDM requirements:223224- Identify golden record candidates (entities shared across subsystems)225- Define entity resolution rules for matching and deduplication226- Assign data stewardship roles from `stakeholders.md`227- Document cross-system integration requirements228229See `references/mdm-requirements.md` for MDM assessment guidance.230231### Step 8: Generate Conceptual Data Model Document232233Write the completed model to `projects/<ProjectName>/<phase>/<document>/conceptual_data_model.md` using the output format below. Log summary statistics: total entities, relationships, attributes, and data quality rules defined.234235## Output Format Specification236237The generated `conceptual_data_model.md` SHALL contain the following sections:238239```240# Conceptual Data Model: [Project Name]241242## 1. Document Information243## 2. Model Summary244### 2.1 Scope and Objectives245### 2.2 Input Artifacts Analyzed246### 2.3 Key Findings247## 3. Entity Catalog248### 3.1 Entity Identification Table249### 3.2 Entity Descriptions250## 4. Relationship Model251### 4.1 Relationship Table252### 4.2 ER Diagram (Mermaid)253## 5. Attribute Dictionary254### 5.1 Entity-Attribute Tables255### 5.2 Business Rule Mappings256## 6. Data Quality Profile257### 6.1 Quality Dimensions by Entity258### 6.2 Acceptance Thresholds259## 7. Master Data Management (if applicable)260## 8. Glossary Alignment261## 9. Recommendations and Next Steps262## 10. Appendix: Standards Traceability263```264265## Common Pitfalls2662671. **Mixing conceptual and physical modeling:** This skill produces a business-level model. Do not specify data types, indexes, or storage engines. Those belong in Phase 03 database design.2682. **Missing M:M resolution:** Many-to-many relationships require an associative entity at the logical level. Document the M:M relationship here; resolution occurs downstream.2693. **Attribute overload:** Include only business-meaningful attributes. Internal system fields (created_at, updated_at, surrogate keys) are implementation details.2704. **Ignoring optionality:** Cardinality without optionality is incomplete. Always state whether each side of a relationship is mandatory or optional.2715. **Glossary drift:** If entity names diverge from `glossary.md`, ambiguity propagates into every downstream artifact.272273## Verification Checklist274275- [ ] All required input files were read and logged.276- [ ] Every entity has a unique identifier, description, and source reference.277- [ ] Every relationship has cardinality, optionality, and a governing business rule.278- [ ] Every required attribute has a data quality dimension assigned.279- [ ] Mermaid ER diagrams render correctly and match the entity/relationship tables.280- [ ] Entity names align with `glossary.md` (if available).281- [ ] No implementation-specific details (data types, column names, indexes) appear.282- [ ] Standards traceability appendix maps sections to IEEE 1016 and IEEE 29148 clauses.283284## Integration285286| Direction | Skill | Relationship |287|------------|----------------------------------------------------|-------------------------------------------------|288| Upstream | `02-requirements-engineering/fundamentals/during/04-*` | Consumes classified requirements |289| Downstream | `03-design-documentation/04-database-design` | Feeds entity model to physical database design |290| Downstream | `02-requirements-engineering/fundamentals/during/06-*` | Feeds entities to CRUD matrix patterns |291| Downstream | `02-requirements-engineering/waterfall/04-*` | Feeds data interfaces to interface specification |292293## Standards Compliance294295| Standard | Governs |296|-------------------|----------------------------------------------------------|297| IEEE 1016-2009 | Software design descriptions and data design viewpoints |298| IEEE 29148-2018 | Data requirements and information model requirements |299| Book 2 Ch.5-7 | Conceptual data architecture and quality dimensions |300301## Resources302303- `references/er-modeling-guide.md` -- Entity identification, relationship types, Mermaid syntax304- `references/data-quality-rules.md` -- Six data quality dimensions with measurement criteria305- `references/mdm-requirements.md` -- Master Data Management requirements and golden record rules