Domains & Taxonomy¶
Signal Spec uses a two-level domain taxonomy to categorize operational issues. This enables prioritization, routing, and reporting by functional area.
Structure¶
Domain¶
The top-level category representing a major functional area of your system.
Examples:
authentication- Identity, login, sessionspayments- Billing, transactions, subscriptionsinfrastructure- Cloud resources, networking, computesecurity- Vulnerabilities, compliance, access controldata- Databases, pipelines, storageintegration- APIs, webhooks, third-party services
Subdomain¶
A more specific area within the domain.
Examples for authentication:
oauth- OAuth/OIDC flowssso- Single sign-onmfa- Multi-factor authenticationsession- Session management
Examples for infrastructure:
kubernetes- Container orchestrationnetworking- Load balancers, DNS, CDNcompute- VMs, serverless functionsstorage- Object storage, file systems
Team¶
The team responsible for the domain/subdomain. Used for routing and reporting.
Schema Definition¶
Leader Mapping¶
For reporting purposes, domains and subdomains can be mapped to organizational leaders:
| Level | Leader Type | Description |
|---|---|---|
| Domain | Area Leader | Executive or director responsible for the functional area |
| Subdomain | Execution Leader | Manager or tech lead responsible for implementation |
Leader Mapping File¶
{
"mappings": [
{
"domain": "authentication",
"subdomain": "oauth",
"area_leader": "Jane Smith",
"execution_leader": "Bob Johnson"
},
{
"domain": "authentication",
"subdomain": "sso",
"area_leader": "Jane Smith",
"execution_leader": "Alice Chen"
}
]
}
Use with the CLI:
Taxonomy Guidelines¶
Keep Domains Stable
Domain names should be stable and change rarely. They represent architectural boundaries, not organizational structure.
Use Kebab-Case
All domain, subdomain, and tag values should be lowercase kebab-case:
- ✅
user-management - ✅
api-gateway - ❌
UserManagement - ❌
api_gateway
Avoid Deep Hierarchies
Two levels (domain/subdomain) is usually sufficient. Deeper hierarchies become hard to maintain and report on.
Example Taxonomy¶
authentication:
- oauth
- sso
- mfa
- session
- password
payments:
- checkout
- subscriptions
- refunds
- fraud
infrastructure:
- kubernetes
- networking
- compute
- storage
- monitoring
security:
- vulnerabilities
- compliance
- access-control
- secrets
data:
- databases
- pipelines
- analytics
- search
integration:
- webhooks
- apis
- third-party
Prioritization by Domain¶
The XLSX report aggregates issues by domain/subdomain, enabling prioritization:
| Domain | Subdomain | Issue Count | Total Signals | Max Severity | Area Leader |
|---|---|---|---|---|---|
| authentication | oauth | 3 | 487 | high | Jane Smith |
| infrastructure | kubernetes | 5 | 234 | critical | Mike Lee |
| payments | checkout | 2 | 156 | medium | Sarah Wong |
This view helps leadership understand:
- Which areas have the most issues
- Where customer impact is highest
- Who owns each problem space