KnowledgeLinks / Plains2PeaksPilot

Data and utilities for Plains2Peaks DP.LA Service Hub Pilot
0 stars 0 forks source link

Rights statements for WSL #34

Closed ljeremias closed 6 years ago

ljeremias commented 6 years ago

After review of 2.21.18 sample, Wyoming State Library has no rights statements. They would like to use, http://rightsstatements.org/vocab/CNE/1.0/

jermnelson commented 6 years ago

Running this SPARQL query on the current pilot triplestore:

 PREFIX bf: <http://id.loc.gov/ontologies/bibframe/>
 PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
 PREFIX relators: <http://id.loc.gov/vocabulary/relators/>
 PREFIX schema: <http://schema.org/>

 SELECT (COUNT(?item) as ?count)
 WHERE {
   ?item rdf:type bf:Item ;
       bf:heldBy <http://library.wyo.gov/> .
           FILTER NOT EXISTS {
               ?item bf:usageAndAccessPolicy ?policy .
       }
}

Results in 0 items.