KnowledgeLinks / Plains2PeaksPilot

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

Missing Required DP.LA Elements in Pilot Record Load #11

Open jermnelson opened 6 years ago

jermnelson commented 6 years ago

Required elements

jermnelson commented 6 years ago

Running this SPARQL query to determine missing data providers:

prefix rdfs: 
prefix rdf: 
prefix bf: 

SELECT DISTINCT ?item
WHERE {
   ?item rdf:type bf:Item .
    FILTER (NOT EXISTS { ?item bf:heldBy ?institution })

} ORDER BY ?item

Resulted in only three BF:Items:

In the spreadsheet, sorting by this _ - @graph - _ - edm:dataProvider - @id column results in the same three BF:Items with empty cells.

Fixed in commit 00d3ed629824b3232a3cbe5ee62597edf3271eb5.

jermnelson commented 6 years ago

Missing Rights Statement fixed for Colorado State Publications in commit 39bf2855fc2a075fbfa6780e09db289021369109

Found with this SPARQL example:

prefix rdfs: 
prefix rdf: 
prefix bf: 

SELECT DISTINCT ?item
WHERE {
    ?item rdf:type bf:Item .
    FILTER (NOT EXISTS { ?item bf:usageAndAccessPolicy ?policy })

} ORDER BY ?instance