Governance Section
The governance section tracks the review status, last review date, and documentation URL for the dataset. This helps users understand how well-maintained and vetted the dataset is.
Fields
All fields in the governance section are optional.
| Field | Type | Description |
|---|---|---|
review_status | enum | Current review status |
last_reviewed | string (date) | When the dataset was last reviewed (ISO 8601) |
documentation_url | string (uri) | URL to human-readable documentation |
Enum Values
review_status
| Value | Description |
|---|---|
draft | Initial version, not yet reviewed |
community-reviewed | Reviewed by community members |
audited | Formally audited by designated reviewers |
deprecated | No longer recommended for use |
Example
{
"governance": {
"review_status": "community-reviewed",
"last_reviewed": "2025-01-15",
"documentation_url": "https://example.org/datasets/hausa-news/docs"
}
}
Field Details
review_status
The review status indicates confidence level:
| Status | Use When | User Expectation |
|---|---|---|
draft | New dataset, untested | Experimental use only |
community-reviewed | Feedback incorporated | Suitable for research |
audited | Formal review complete | Production-ready |
deprecated | Issues identified or superseded | Avoid for new projects |
last_reviewed
Use ISO 8601 date format:
{
"last_reviewed": "2025-01-15"
}
Update this date when you:
- Review and verify the data card accuracy
- Update the dataset contents
- Address reported issues
- Perform quality audits
documentation_url
Link to comprehensive documentation:
{
"documentation_url": "https://github.com/example/hausa-news-corpus/blob/main/README.md"
}
The documentation should include:
- Detailed dataset description
- Collection methodology
- Usage examples
- Known limitations
- Changelog
Governance Lifecycle
draft -> community-reviewed -> audited
|
v
deprecated
-
Draft: Initial release
- Basic data card filled out
- Limited testing
-
Community-Reviewed: Community feedback incorporated
- Users have provided feedback
- Known issues documented
- Quality checks performed
-
Audited: Formal audit completed
- Independent review
- Compliance verification
- Security assessment (if applicable)
-
Deprecated: End of life
- Superseded by newer version
- Critical issues discovered
- Legal or ethical concerns
Deprecation Notice
When deprecating a dataset, update the data card:
{
"governance": {
"review_status": "deprecated",
"last_reviewed": "2025-02-01",
"documentation_url": "https://example.org/datasets/old-corpus/deprecation-notice"
}
}
Include in documentation:
- Reason for deprecation
- Recommended replacement (if any)
- Timeline for data removal (if applicable)
See Also
- Community Section - Community involvement
- Core Section - Version and maintainer info