rightsstatements / rights-app

Web application to serve the rightsstatements.org vocabulary
http://rightsstatements.org/vocab/1.0/
European Union Public License 1.1
1 stars 3 forks source link

What to do when a collection URI is requested? #15

Closed acka47 closed 8 years ago

acka47 commented 8 years ago

As discussed on today's kickoff meeting: Only deliver the triples with the collection URI in subject position. E.g. for the in-copyright collection (<collection-ic/1.0/>):

@base <http://rightsstatements.org/vocab/> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix dcmitype: <http://purl.org/dc/dcmitype/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix edm: <http://www.europeana.eu/schemas/edm/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix odrl: <http://www.w3c.org/community/odrl/two/vocab/2.1/> .
@prefix p3p: <http://www.w3.org/2002/01/p3prdfv1#> .
@prefix premiscopy: <http://id.loc.gov/vocabulary/preservation/copyrightStatus/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .

<collection-ic/1.0/> a skos:Collection ;
  skos:prefLabel "Rights Statements for works that are in copyright"@en ;
  owl:versionInfo "1.0" ;
  skos:member <InC/1.0/> ;
  skos:member <InC-OW-EU/1.0/> ;
  skos:member <InC-RUU/1.0/> ;
  skos:member <InC-EDU/1.0/> ;
  skos:member <InC-NC/1.0/> .

We will follow this pattern until we anything to the contrary.

acka47 commented 8 years ago

Closing.