We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Where do we find datasets to distill vocab usage info from?
The text was updated successfully, but these errors were encountered:
Maybe we can extract LD datasets from the VLO.
Sorry, something went wrong.
You can find LD datasets via the NDE Datasetregister. Here a simple SPARQL query generator is available to create a query to find LD datasets in https://triplestore.netwerkdigitaalerfgoed.nl/
PREFIX dcat: <http://www.w3.org/ns/dcat#> PREFIX dct: <http://purl.org/dc/terms/> SELECT DISTINCT ?dataset ?title WHERE { ?dataset a dcat:Dataset . ?dataset dct:title ?title . FILTER(LANG(?title) = "" || LANGMATCHES(LANG(?title), "nl")) ?dataset dcat:distribution ?distribution . ?distribution dct:format ?format . FILTER( ?format="application/ld+json" || ?format="application/n-quads" || ?format="application/n-triples" || ?format="application/rdf+xml" || ?format="application/sparql-query" || ?format="application/trig" || ?format="application/turtle" || ?format="application/vnd.hdt" || ?format="text/n3" || ?format="text/turtle") }
No branches or pull requests
Where do we find datasets to distill vocab usage info from?
The text was updated successfully, but these errors were encountered: