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

Publisher available but not converted/stored #866

Closed
coret opened this issue Feb 14, 2024 · 2 comments · Fixed by #910
Closed

Publisher available but not converted/stored #866

coret opened this issue Feb 14, 2024 · 2 comments · Fixed by #910

Comments

@coret
Copy link
Contributor

coret commented Feb 14, 2024

The following SPARQL query which looks for datasets without a publisher shows 4 datasets - this should not be possible (as this is a mandatory property):

PREFIX dcat: <http://www.w3.org/ns/dcat#>
PREFIX dct:  <http://purl.org/dc/terms/>
SELECT * WHERE {
    ?dataset a dcat:Dataset .
    FILTER NOT EXISTS {
        ?dataset dct:publisher ?publisher .
    }
}

One of the datasets is https://doi.org/10.5281/zenodo.6949127 - this link shows that the dataset is included in the Dataset Register, so it is valid according to our SHACL validation - and this is based on https://gitlab.com/uvacreate/amsterdam-time-machine/infrastructure-pilot/-/raw/main/datasets/huurwaarden1832.jsonld which includes:

publisher: {
  @type: "Organization",
  @id: "https://www.amsterdamtimemachine.nl/",
  name: "Amsterdam Time Machine"
},
@ddeboer
Copy link
Member

ddeboer commented Feb 14, 2024

As you can see in the SHACL, the severity for publisher is warning, not violation, so this is possible.

@coret
Copy link
Contributor Author

coret commented Feb 14, 2024

But the issue is that the publisher data isn't stored in the triplestore. Why is this?

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

Successfully merging a pull request may close this issue.

2 participants