use entities for group/publication descriptions

This commit is contained in:
j 2021-02-07 11:40:46 +01:00
commit 762c5e773c
3 changed files with 137 additions and 4 deletions

View file

@ -557,7 +557,26 @@
"id" and "name" keys are required. If "alternativeNames" is present, these
will act as synonyms when autocompleting values entered as annotations.
*/
"entities": [],
"entities": [
{
"id": "group",
"title": "Group",
"keys": [
{"id": "id", "title": "ID", "type": "string"},
{"id": "name", "title": "Name", "type": "string"},
{"id": "description", "title": "Description", "type": "text"}
]
},
{
"id": "publication",
"title": "Publication",
"keys": [
{"id": "id", "title": "ID", "type": "string"},
{"id": "name", "title": "Name", "type": "string"},
{"id": "description", "title": "Description", "type": "text"}
]
}
],
/*
"flags", if set to true, will cause flag icons to appear in filters.
*/