36 lines
855 B
Markdown
36 lines
855 B
Markdown
# Domain Ontology Template
|
|
|
|
## Overview
|
|
This template provides a structured approach to documenting domain ontologies for software systems.
|
|
|
|
## Domain: [Domain Name]
|
|
|
|
### Core Concepts
|
|
<!-- List the main domain concepts -->
|
|
|
|
```
|
|
[Domain Name]
|
|
├── Primary Entities
|
|
│ ├── Entity 1
|
|
│ ├── Entity 2
|
|
│ └── Entity 3
|
|
├── Value Objects
|
|
│ ├── Value Object 1
|
|
│ └── Value Object 2
|
|
├── Services
|
|
│ ├── Service 1
|
|
│ └── Service 2
|
|
└── Repositories
|
|
├── Repository 1
|
|
└── Repository 2
|
|
```
|
|
|
|
### Relationships
|
|
<!-- Document key relationships between concepts -->
|
|
|
|
## Usage Instructions
|
|
1. Replace [Domain Name] with your actual domain
|
|
2. Fill in the core concepts hierarchy
|
|
3. Document the relationships
|
|
4. Add specific concept details using the concept template
|