From f6154c2d0e46571e0445d44f87b5c26d1aac0b71 Mon Sep 17 00:00:00 2001 From: j Date: Mon, 26 Feb 2024 12:43:55 +0000 Subject: [PATCH] add entities --- config.jsonc | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/config.jsonc b/config.jsonc index 9c8de55..3f32ee5 100644 --- a/config.jsonc +++ b/config.jsonc @@ -505,7 +505,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. */