Meta Configuration in DVID
neutu_config
user_status
{
"admin": ["user1", "user2"]
}body_status_v2
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"name": {
"description": "name of the status",
"type": "string"
},
"protection": {
"description": "protection level",
"type": "integer"
},
"priority": {
"description": "status with higher priority overwrites the lower one in merging",
"type": "integer"
},
"final": {
"description": "final status, which cannot be changed by non-admin",
"type": "boolean"
},
"admin_level": {
"description": "0 means nothing special and 1 means it can only be added by admin",
"type": "integer"
}
},
"required": [
"name"
]
}Last updated