From 88b523b0cd73e3ee1b1061d7af1d3268d1041cbe Mon Sep 17 00:00:00 2001 From: Charles Tapley Hoyt Date: Tue, 16 Jan 2024 20:02:49 +0100 Subject: [PATCH] Add "unresponsive" to ontology status enum Closes #2255 --- util/schema/registry_schema.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/util/schema/registry_schema.json b/util/schema/registry_schema.json index fe00486fe..4e7b11834 100644 --- a/util/schema/registry_schema.json +++ b/util/schema/registry_schema.json @@ -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}."