OnroerendErfgoed / atramhasis

An online SKOS editor
http://atramhasis.readthedocs.io/
GNU General Public License v3.0
52 stars 11 forks source link

What to store on conceptschemes? #198

Open koenedaele opened 9 years ago

koenedaele commented 9 years ago

More information on conceptschemes. We're currently keeping fairly little information on conceptschemes, only id, uri, labels and notes. We could keep things like dct:publisher, dct:date for certain information. Isn't there a dc profile for conceptschemes somewhere?

koenedaele commented 9 years ago

DC application profile: http://nkos.slis.kent.edu/

koenedaele commented 9 years ago

Example from heritagedata.org (without topconcepts):

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix ns0: <http://www.w3.org/2004/02/skos/core#> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

<http://purl.org/heritagedata/schemes/eh_period> rdf:type ns0:ConceptScheme ;
                                                 cc:license <http://creativecommons.org/licenses/by/3.0> ;
                                                 cc:attributionURL <http://www.english-heritage.org.uk> ;
                                                 cc:attributionName "English Heritage"@en ;
                                                 dct:title "PERIOD (EH)"@en ;
                                                 rdfs:label "PERIOD (EH)"@en ;
                                                 dct:description "English Heritage Periods List"@en ;
                                                 dct:coverage <http://data.ordnancesurvey.co.uk/id/country/england> ;
                                                 dct:publisher <http://www.english-heritage.org.uk> ;
                                                 dct:identifier "http://purl.org/heritagedata/schemes/eh_period" ;
                                                 dct:issued "2013-12-06T16:44:37"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
koenedaele commented 9 years ago

Example from Getty:

<http://vocab.getty.edu/aat/> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#ConceptScheme> .
<http://vocab.getty.edu/aat/> <http://www.w3.org/2000/01/rdf-schema#comment> "The Art and Architecture Thesaurus concept scheme" .
<http://vocab.getty.edu/aat/> <http://www.w3.org/2000/01/rdf-schema#label> "Art and Architecture Thesaurus" .
<http://vocab.getty.edu/aat/> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://vocab.getty.edu/> .
<http://vocab.getty.edu/aat/> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.getty.edu/research/tools/vocabularies/lod/> .
<http://vocab.getty.edu/aat/> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://vocab.getty.edu/.well-known/void> .
<http://vocab.getty.edu/aat/> <http://purl.org/dc/terms/creator> <http://www.getty.edu/research/> .
<http://vocab.getty.edu/aat/> <http://purl.org/dc/terms/creator> <http://www.ontotext.com> .
<http://vocab.getty.edu/aat/> <http://purl.org/dc/terms/created> "2014-02-20"^^<http://www.w3.org/2001/XMLSchema#date> .
<http://vocab.getty.edu/aat/> <http://purl.org/vocab/vann/preferredNamespacePrefix> "aat" .
<http://vocab.getty.edu/aat/> <http://purl.org/vocab/vann/preferredNamespaceUri> "http://vocab.getty.edu/aat/" .
<http://vocab.getty.edu/aat/> <http://xmlns.com/foaf/0.1/homepage> <http://www.getty.edu/research/tools/vocabularies/aat/> .
koenedaele commented 9 years ago

See koenedaele/skosprovider#14 and koenedaele/skosprovider#15