Skip to content
Snippets Groups Projects
Commit fb98afcf authored by moon's avatar moon
Browse files

Made the enumeration items lower case

parent 5296b24c
No related branches found
No related tags found
No related merge requests found
......@@ -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
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment