Last active
June 18, 2021 08:46
-
-
Save bertvannuffelen/505faddaaaf15a9ecb45c605f8183563 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @prefix dcat: <http://www.w3.org/ns/dcat#> . | |
| @prefix dct: <http://purl.org/dc/terms/> . | |
| @prefix foaf: <http://xmlns.com/foaf/0.1/> . | |
| @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | |
| <https://swisstopo/catalog-endpoint.rdf> | |
| a dcat:Catalog ; | |
| dcat:dataset <https://swisstopo/data/123>, <https://swisstopo/data/345> ; | |
| dct:title "Open Data City of Zurich"@en , | |
| "Offene Daten der Stadt Zurich"@de ; | |
| dct:description "Datenkatalog der Stadt Zurich"@de ; | |
| dct:issued "2021-01-07T00:00:00"^^xsd:dateTime ; | |
| foaf:homepage <https://swisstopo/index.html> ; | |
| dct:publisher <https://swisstopo> ; | |
| dct:modified "2021-01-07T00:00:00"^^xsd:dateTime ; | |
| dct:language "en" . | |
| <https://swisstopo/data/123> | |
| a dcat:Dataset ; | |
| dct:title "some title"@en ; | |
| dct:description "some dataset"@en . | |
| <https://swisstopo/data/345> | |
| a dcat:Dataset ; | |
| dct:title "some title"@en ; | |
| dct:description "some dataset"@en . | |
| <https://swisstopo/index.html> | |
| a foaf:Document . | |
| <https://swisstopo> | |
| a foaf:Organization ; | |
| foaf:name "Landesamt für Topography"@en . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment