Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
jermnelson opened this issue Oct 25, 2017 · 2 comments
Open

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

jermnelson opened this issue Oct 25, 2017 · 2 comments

Comments

@jermnelson
Copy link
Member

Required elements

  • 68 missing a data provider
  • 1057 missing rights
  • 65 missing isShownAt
  • 1278 missing title
@jermnelson jermnelson added the bug label Oct 25, 2017
@jermnelson jermnelson self-assigned this Oct 25, 2017
@jermnelson
Copy link
Member Author

jermnelson commented Oct 25, 2017

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 00d3ed6.

@jermnelson
Copy link
Member Author

jermnelson commented Oct 25, 2017

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

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant