diff --git a/cms/src/api/update-item/content-types/update-item/schema.json b/cms/src/api/update-item/content-types/update-item/schema.json index dabbf920c23a89c551a7fb4243071aafda448c2f..c152a1636120dac7c558a127b6dcf1fb00cdda70 100644 --- a/cms/src/api/update-item/content-types/update-item/schema.json +++ b/cms/src/api/update-item/content-types/update-item/schema.json @@ -15,9 +15,9 @@ "Entity": { "type": "enumeration", "enum": [ - "Protein", - "Condensate", - "Condensate_Protein" + "protein", + "condensate", + "condensate_protein" ] }, "EntityId": { @@ -32,9 +32,9 @@ "ChangeOperation": { "type": "enumeration", "enum": [ - "Add", - "Remove", - "Update" + "add", + "remove", + "update" ], "required": true }, @@ -51,17 +51,6 @@ "UpdateReviewTimestamp": { "type": "datetime" }, - "Status": { - "type": "enumeration", - "enum": [ - "Requested", - "Accepted", - "Rejected", - "Synced" - ], - "default": "Requested", - "required": true - }, "reviewedBy": { "type": "relation", "relation": "manyToOne", @@ -88,6 +77,16 @@ }, "Value": { "type": "text" + }, + "Status": { + "type": "enumeration", + "enum": [ + "requested", + "accepted", + "rejected", + "synced" + ], + "required": true } } }