Project

General

Profile

Idea #14151

Updated by Peter Amstutz about 5 years ago

In #12479 support was added for controlled vocabularies of tags and values when setting and updating properties on collections, but, on the backend, that feature just used the existing string based properties which means there is no easy way to track vocabulary label changes, alternate labels, multiple languages, etc. 

 As a system administrator, I would like the ability to configure the vocabulary that the users are allowed to use when editing properties and be able to update the labels while retaining the same concept identifiers. 

 As a user, I would like the ability to search on any of a number of alternate terms for a common concept. For example, I'd like to be able to search for either "human" or "homo sapiens" in the context of "species" and have it return the same concept.  

 I would also like the option of viewing a definition of the concept, preferred label, and other related information to help make sure I'm choosing the correct term. -For hierarchical vocabularies, it'd be desirable to match on all child concepts of a parent concept when searching. The need for the additional capabilities in this paragraph are TBD.- 

 Design: Design sketch: 

 * UI will be implemented in Workbench2  
 * Vocabulary terms (predicates/property keys and values) have an id and one or more labels.    There should be a way of deciding on a preferred or primary label for display. 
 * Properties have a range of valid terms (identifier + labels) and/or can be non-strict (allows free text) values (requires some sort of schema) 
 * Restrict label search on property range and language 
 * When user starts typing, search identifiers, labels (possibly also description/definition text) and present an autocomplete list 
 * Alternately, user may start with a full list (with with most commonly used terms at the top?    how to rank?) top 
 * When user selects desired label, store the underlying identifier for id in the property field/value 
 * When viewing properties, display the primary label associated with an id for the current language 
 * Permissible to have duplicate labels (???) provided can be differentiated otherwise (different languages? map to ids in different property ranges?) 

 To be decided: 

 * How is schema / range of valid values for a property expressed (RDFS/OWL or something else?) 
 * Extend the vocabulary JSON to support identifiers, multiple labels, description/definition text API of backend service.    Something like: "return ranked list of terms that match search query X for terms, property range Y in language tags Z" or "list all terms for property range Y" 
 * To start with, assume that the entire vocabulary JSON can be loaded by the browser and searched with Javascript. What to do when a localized label isn't available 
 * Backend technology.    The module for working with the Some options: part of API server, new postgres table, full text search like elastic search, a third party vocabulary should be implemented using asynchronous methods so that an API backend can be plugged in later if loading static JSON becomes impracticable. service, a triple store? 

Back