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

fix bad dct:modified triples #81

Open
VladimirAlexiev opened this issue Sep 7, 2024 · 0 comments
Open

fix bad dct:modified triples #81

VladimirAlexiev opened this issue Sep 7, 2024 · 0 comments

Comments

@VladimirAlexiev
Copy link

VladimirAlexiev commented Sep 7, 2024

A basic question is "when was this dataset last updated".
This is not shown on the home page, so I tried https://lov.linkeddata.es/dataset/lov/sparql:

prefix dct:  <http://purl.org/dc/terms/>
select * (max(?upd) as ?updated) {
  ?x dct:modified ?upd
}

This returned a string "May 5th, 2023"@en, which is suspect and too far in the past. So I tried this query:

prefix dct:  <http://purl.org/dc/terms/>
select * {
  ?x dct:modified ?upd
} order by desc(?upd) limit 20

There are 4 strings to be fixed to xsd:date. I understand that you probably take them from the source ontologies, but leaving them as is makes it harder to work with dct:modified. There are only a few, and you can fix them with a simple UPDATE ... VALUES

Then come the real last-updated:

Can you explain what was updated in lov after the latest ontology lov/vocabs/dvia?

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

No branches or pull requests

1 participant