Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add "unresponsive" to ontology status enum #2515

Merged
merged 2 commits into from
Jan 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions util/schema/registry_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@
"activity_status": {
"level": "error",
"principle": "http://obofoundry.org/principles/fp-016-maintenance.html",
"description": "'activity_status' is a required property that must have a value of 'active', 'inactive', or 'orphaned'. Active ontologies have a contact and are currently in development. Orphaned ontologies are still in development, but do not have a contact. Inactive ontologies are no longer in development.",
"description": "'activity_status' is a required property that must have a value of 'active', 'inactive', 'orphaned', or 'unresponsive'. Active ontologies have a contact and are currently in development. Orphaned ontologies are still in development, but do not have a contact. Inactive ontologies are no longer in development. Unresponsive ontologies are still being developed, but the maintainers do not respond to discussion on GitHub, email, nor Slack.",
"type": "string",
"enum": [
"active",
"inactive",
"orphaned"
"orphaned",
"unresponsive"
],
"errors": {
"activity_status": "${data} is not one of ${schema}."
Expand Down
Loading