Currently collections are referenced in the default namespace but referencing concepts use a separate collection-namespace (/collections). This PR removes the collection-namespace and strictly uses the default namespace for collections.
Example:
# a collection
@prefix : <http://try.iqvoc.net/>.
@prefix skos: <http://www.w3.org/2004/02/skos/core#>.
:indoors a skos:Collection; # <------- collection in default namespace
skos:prefLabel "indoors"@en;
skos:member :audiophilia;
...
Currently collections are referenced in the default namespace but referencing concepts use a separate collection-namespace (/collections). This PR removes the collection-namespace and strictly uses the default namespace for collections.
Example: