Skip to content

Commit

Permalink
Add "unresponsive" to ontology status enum (#2515)
Browse files Browse the repository at this point in the history
Closes #2255

Co-authored-by: Deepak <[email protected]>
  • Loading branch information
cthoyt and deepakunni3 authored Jan 17, 2024
1 parent 98e1aba commit 56faf14
Showing 1 changed file with 3 additions and 2 deletions.
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

0 comments on commit 56faf14

Please sign in to comment.