├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DCAT-ISO19115-mapping.xlsx ├── LICENSE.md ├── README.md ├── charter ├── charter-2022.html └── index.html ├── connegp └── index.html ├── dcat-implementation-report ├── config.js ├── img │ ├── fig-existing-implementations-distribution.svg │ └── fig-implementations-statistics.svg ├── index.html ├── table-implementations.html ├── table-revisions-with-no-existing-implementations.html └── table-revisions.html ├── dcat ├── alignments │ └── LinkedDataPlatform ├── config.js ├── dcat-tr-to-pr.md ├── dcat_10.html ├── examples │ ├── basic-example.jsonld │ ├── basic-example.ttl │ ├── catalog-record-schema.jsonld │ ├── catalog-record-schema.rdf │ ├── catalog-record-schema.ttl │ ├── catalog-record.jsonld │ ├── catalog-record.ttl │ ├── classifying-thematically.jsonld │ ├── classifying-thematically.ttl │ ├── classifying-types.jsonld │ ├── classifying-types.ttl │ ├── compress-and-package.jsonld │ ├── compress-and-package.ttl │ ├── conformance-standards.jsonld │ ├── conformance-standards.trig │ ├── csiro-dap-examples.jsonld │ ├── csiro-dap-examples.ttl │ ├── csiro-stratchart-sdo.jsonld │ ├── csiro-stratchart-sdo.ttl │ ├── csiro-stratchart.jsonld │ ├── csiro-stratchart.ttl │ ├── csiro-stratchart_dcat3.ttl │ ├── dataset-002.jsonld │ ├── dataset-002.ttl │ ├── dataset-003.jsonld │ ├── dataset-003.ttl │ ├── dataset-004-sdo.jsonld │ ├── dataset-004-sdo.ttl │ ├── dataset-004.jsonld │ ├── dataset-004.ttl │ ├── dryad-globtherm-sdata.ttl │ ├── eea-csw.jsonld │ ├── eea-csw.ttl │ ├── ga-courts.jsonld │ ├── ga-courts.ttl │ ├── ga-wms.jsonld │ ├── ga-wms.ttl │ ├── genoa-busstop.jsonld │ ├── genoa-busstop.ttl │ ├── identifier-types.jsonld │ ├── identifier-types.ttl │ ├── relation-examples.jsonld │ ├── relation-examples.ttl │ ├── service1.jsonld │ ├── service1.ttl │ ├── spatial-properties.jsonld │ ├── spatial-properties.ttl │ ├── temporal-properties.jsonld │ ├── temporal-properties.ttl │ ├── threddsABC.jsonld │ ├── threddsABC.ttl │ └── vocab-dcat-3 │ │ ├── basic-example.jsonld │ │ ├── basic-example.rdf │ │ ├── basic-example.ttl │ │ ├── catalog-record.jsonld │ │ ├── catalog-record.rdf │ │ ├── catalog-record.ttl │ │ ├── classifying-thematically.jsonld │ │ ├── classifying-thematically.rdf │ │ ├── classifying-thematically.ttl │ │ ├── classifying-types.jsonld │ │ ├── classifying-types.rdf │ │ ├── classifying-types.ttl │ │ ├── compress-and-package.jsonld │ │ ├── compress-and-package.rdf │ │ ├── compress-and-package.ttl │ │ ├── csiro-dap-examples.jsonld │ │ ├── csiro-dap-examples.rdf │ │ ├── csiro-dap-examples.ttl │ │ ├── csiro-stratchart-sdo.jsonld │ │ ├── csiro-stratchart-sdo.rdf │ │ ├── csiro-stratchart-sdo.ttl │ │ ├── csiro-stratchart.jsonld │ │ ├── csiro-stratchart.rdf │ │ ├── csiro-stratchart.ttl │ │ ├── csiro-stratchart_dcat3.jsonld │ │ ├── csiro-stratchart_dcat3.rdf │ │ ├── csiro-stratchart_dcat3.ttl │ │ ├── dataset-002.jsonld │ │ ├── dataset-002.rdf │ │ ├── dataset-002.ttl │ │ ├── dataset-003.jsonld │ │ ├── dataset-003.rdf │ │ ├── dataset-003.ttl │ │ ├── dataset-004-sdo.jsonld │ │ ├── dataset-004-sdo.rdf │ │ ├── dataset-004-sdo.ttl │ │ ├── dataset-004.jsonld │ │ ├── dataset-004.rdf │ │ ├── dataset-004.ttl │ │ ├── dryad-globtherm-sdata.jsonld │ │ ├── dryad-globtherm-sdata.rdf │ │ ├── dryad-globtherm-sdata.ttl │ │ ├── eea-csw.jsonld │ │ ├── eea-csw.rdf │ │ ├── eea-csw.ttl │ │ ├── ga-courts.jsonld │ │ ├── ga-courts.rdf │ │ ├── ga-courts.ttl │ │ ├── ga-wms.jsonld │ │ ├── ga-wms.rdf │ │ ├── ga-wms.ttl │ │ ├── genoa-busstop.jsonld │ │ ├── genoa-busstop.rdf │ │ ├── genoa-busstop.ttl │ │ ├── identifier-types.jsonld │ │ ├── identifier-types.rdf │ │ ├── identifier-types.ttl │ │ ├── relation-examples.jsonld │ │ ├── relation-examples.rdf │ │ ├── relation-examples.ttl │ │ ├── series-membership.jsonld │ │ ├── series-membership.rdf │ │ ├── series-membership.ttl │ │ ├── series-releases.jsonld │ │ ├── series-releases.rdf │ │ ├── series-releases.ttl │ │ ├── series-versions.jsonld │ │ ├── series-versions.rdf │ │ ├── series-versions.ttl │ │ ├── service1.jsonld │ │ ├── service1.rdf │ │ ├── service1.ttl │ │ ├── spatial-properties.jsonld │ │ ├── spatial-properties.rdf │ │ ├── spatial-properties.ttl │ │ ├── temporal-properties.jsonld │ │ ├── temporal-properties.rdf │ │ ├── temporal-properties.ttl │ │ ├── threddsABC.jsonld │ │ ├── threddsABC.rdf │ │ └── threddsABC.ttl ├── images │ ├── Asset.png │ ├── Backbone.png │ ├── Catalog-membership-options.png │ ├── Catalog-membership-resolution.png │ ├── DCAT Simple.png │ ├── DCAT-summary.png │ ├── DCATPropertyExtensionToDQV.png │ ├── DataService.png │ ├── Research dataset profile.png │ ├── Resource+Representation.png │ ├── Resources.png │ ├── Service.png │ ├── Standard.png │ ├── WebService.png │ ├── dcat-all-attributes.drawio │ ├── dcat-all-attributes.svg │ ├── dcat-model-1.jpg │ ├── dcat-model.jpg │ ├── dcat-relationships.drawio │ ├── dcat-relationships.svg │ ├── ex-spatial-coverage-bbox-netherlands.png │ ├── ex-spatial-coverage-centroid-anne-frank-house.png │ ├── ex-spatial-coverage-geometry-anne-frank-house.png │ ├── membership-predicate.png │ ├── qr.png │ ├── relation-sub-properties.png │ ├── schema.org-dataset.drawio │ ├── schema.org-dataset.png │ ├── schema.org-dataset.svg │ ├── version-backward-compatibility-dcat.drawio │ ├── version-backward-compatibility-dcat.svg │ ├── version-chain-and-hierarchy-dcat.drawio │ ├── version-chain-and-hierarchy-dcat.svg │ ├── version-chain-and-hierarchy.drawio │ ├── version-chain-and-hierarchy.svg │ ├── version-replace-dcat.drawio │ ├── version-replace-dcat.svg │ ├── version-replace.drawio │ └── version-replace.svg ├── index.html ├── issues-in-index.html ├── issues-tagged-with-dcat ├── publication-snapshots │ ├── CR │ │ ├── Overview.html │ │ └── images │ │ │ ├── dcat-all-attributes.svg │ │ │ ├── dcat-relationships.svg │ │ │ ├── ex-spatial-coverage-bbox-netherlands.png │ │ │ ├── ex-spatial-coverage-centroid-anne-frank-house.png │ │ │ ├── ex-spatial-coverage-geometry-anne-frank-house.png │ │ │ ├── schema.org-dataset.svg │ │ │ └── version-chain-and-hierarchy.svg │ └── PR │ │ ├── Overview.html │ │ └── images │ │ ├── dcat-all-attributes.svg │ │ ├── dcat-relationships.svg │ │ ├── ex-spatial-coverage-bbox-netherlands.png │ │ ├── ex-spatial-coverage-centroid-anne-frank-house.png │ │ ├── ex-spatial-coverage-geometry-anne-frank-house.png │ │ ├── schema.org-dataset.svg │ │ └── version-chain-and-hierarchy.svg ├── rdf │ ├── dcat-external.jsonld │ ├── dcat-external.rdf │ ├── dcat-external.ttl │ ├── dcat-prov.ttl │ ├── dcat-schema.ttl │ ├── dcat.html │ ├── dcat.jsonld │ ├── dcat.rdf │ ├── dcat.ttl │ ├── dcat2-external.jsonld │ ├── dcat2-external.rdf │ ├── dcat2-external.ttl │ ├── dcat2.html │ ├── dcat2.jsonld │ ├── dcat2.rdf │ ├── dcat2.ttl │ ├── dcat2014.rdf │ ├── dcat2014.ttl │ ├── dcat3.jsonld │ ├── dcat3.rdf │ └── dcat3.ttl ├── small.css └── style.css ├── dcat3-implementation-report ├── config.js ├── img │ └── fig-implementations-counting.svg ├── index.html ├── table-implementations.html └── table-revisions.html ├── docs └── explainer.md ├── errata ├── README.md ├── assets │ ├── errata.css │ ├── errata.js │ └── toc.js └── index.html ├── profiles ├── .gitignore ├── config.js ├── figures.pptx ├── figures │ ├── fig-multiple-base-spec.svg │ └── fig-profile-of-profile.svg └── index.html ├── ucr ├── README.md ├── config.js ├── dxwg.css ├── dxwg.js ├── index.html └── static │ ├── dxwg.css │ ├── dxwg.js │ └── index.html ├── utils └── req2issue │ ├── README.md │ └── req2issue.xslt └── w3c.json /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | If you are submissing a new USE CASE, please use the template below. Otherwise, delete the use case template before submitting your contribution. 2 | 3 | --- 4 | ### Use case name 5 | Status: 6 | 7 | Identifier: 8 | 9 | Creator: (your name) 10 | 11 | Deliverable(s): (DCAT1.1, AP Guidelines, Content Negotiation) 12 | ''Which deliverable or deliverables does this UC relate to?'' 13 | 14 | ## Tags 15 | ''Optional space-separated list of tags out of the above catalog (extend on demand)'' 16 | 17 | ## Stakeholders 18 | ''Mandatory list of stakeholders experiencing the problem. When describing the stakeholder, please be as specific as possible (e.g., data consumer, data producer, data publisher, program, etc.) and avoid using the term user.'' 19 | 20 | ## Problem statement 21 | ''Mandatory statement of the current situation, including a description of the problem, the stakeholders experiencing the problem, and what the stakeholder(s) are expected to supply (i.e. what contextual knowledge are they expected to have available) and/or receive to resolve the problem they are experiencing. In describing the stakeholder, please be as specific as possible (e.g., data consumer, data producer, data publisher, program, etc.) and avoid using the term user.'' 22 | 23 | ## Existing approaches 24 | ''Optional references to standards and examples of established approaches with a potential for reuse in DCAT'' 25 | 26 | ## Links 27 | ''Optional link list to documents and projects this use case refers to'' 28 | 29 | ## Requirements 30 | ''Mandatory requirements suggested by this use case'' 31 | 32 | * Imperative sentence starting with a verb each describing an individual task in order to solve the stated problem 33 | 34 | ## Related use cases 35 | ''Optional references to related local (refer to anchor identifier [[#Id...]]) and remote use cases (e.g. POE-WG UCs)''. 36 | 37 | ## Comments 38 | ''Optional section for editorial comments, suggestion and their interactive resolution'' 39 | 40 | 41 | --- 42 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # IDE-specific config 2 | .idea/ 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | 3 | All documentation, code and communication under this repository are covered by the [W3C Code of Ethics and Professional Conduct](https://www.w3.org/Consortium/cepc/). 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Contributions to this repository are intended to become part of Recommendation-track documents governed by the 2 | [W3C Patent Policy](https://www.w3.org/Consortium/Patent-Policy/) and 3 | [Document License](https://www.w3.org/Consortium/Legal/copyright-documents). To make substantive contributions to specifications, you must either participate 4 | in the relevant W3C Working Group or make a non-member patent licensing commitment. 5 | 6 | If you are not the sole contributor to a contribution (pull request), please identify all 7 | contributors in the pull request comment. 8 | 9 | To add a contributor (other than yourself, that's automatic), mark them one per line as follows: 10 | 11 | ``` 12 | +@github_username 13 | ``` 14 | 15 | If you added a contributor by mistake, you can remove them in a comment with: 16 | 17 | ``` 18 | -@github_username 19 | ``` 20 | 21 | If you are making a pull request on behalf of someone else but you had no part in designing the 22 | feature, you can remove yourself with the above syntax. 23 | -------------------------------------------------------------------------------- /DCAT-ISO19115-mapping.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/DCAT-ISO19115-mapping.xlsx -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | All documents in this Repository are licensed by contributors 2 | under the 3 | [W3C Document License](https://www.w3.org/Consortium/Legal/copyright-documents). 4 | 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # W3C Dataset Exchange Working Group (DXWG) - DCAT 2 | 3 | This repository contains the *Dataset Catalogue Vocabulary* (DCAT) work of the *Dataset Exchange Working Group* (DXWG). 4 | 5 | - [DXWG's home page](https://www.w3.org/2017/dxwg/) 6 | - [Charter](https://www.w3.org/2020/02/dx-wg-charter.html) 7 | - [Contribution Guidelines](CONTRIBUTING.md) cover the W3C legal aspects of contributing to this Github repository 8 | 9 | ## DCAT Working Documents 10 | 11 | - [Editors' Draft](https://w3c.github.io/dxwg/dcat/) 12 | - [Latest published version](https://www.w3.org/TR/vocab-dcat-3/) 13 | - [Fourth Public Working Draft (4PWD)](https://www.w3.org/TR/2022/WD-vocab-dcat-3-20220510/) 14 | - [Third Public Working Draft (3PWD)](https://www.w3.org/TR/2022/WD-vocab-dcat-3-20220111/) 15 | - [Second Public Working Draft (2PWD)](https://www.w3.org/TR/2021/WD-vocab-dcat-3-20210504/) 16 | - [First Public Working Draft (FPWD)](https://www.w3.org/TR/2020/WD-vocab-dcat-3-20201217/) 17 | 18 | ## Other DXWG Documents 19 | 20 | - [DXWG Use cases and requirements (Working Group Note)](https://www.w3.org/TR/dcat-ucr/) 21 | - [Guidance for Application Profiles (Editors' Draft)](https://w3c.github.io/dxwg/profiles/) 22 | - [The Profiles Vocabulary (Editors' Draft)](https://w3c.github.io/dx-prof/) 23 | - Dedicated repository: https://github.com/w3c/dx-prof 24 | - [Content Negotiation by Profile (Editors' Draft)](https://w3c.github.io/dx-connegp/) 25 | - Dedicated repository: https://github.com/w3c/dx-connegp 26 | -------------------------------------------------------------------------------- /connegp/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | This file has moved to https://w3c.github.io/dx-connegp/connegp/ 7 | 8 | 9 | -------------------------------------------------------------------------------- /dcat-implementation-report/table-revisions-with-no-existing-implementations.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |
Revisions with no existing implementation
IDClassPropertyInherited from
REV3dcat:Catalogdcat:catalog
REV12dcat:Catalogodrl:hasPolicydcat:Resource
REV17dcat:Catalogdcat:qualifiedRelationdcat:Resource
REV24dcat:Datasetdcat:temporalResolution
REV43dcat:Distributiondcat:spatialResolutionInMeters
REV44dcat:Distributiondcat:temporalResolution
REV60dcat:DataServicedct:relationdcat:Resource
REV74dcat:Role
REV75dct:PeriodOfTimedcat:startDate
REV76dct:PeriodOfTimedcat:endDate
REV77dct:PeriodOfTimetime:hasBeginning
REV78dct:PeriodOfTimetime:hasEnd
REV81dct:Locationdcat:centroid
22 | -------------------------------------------------------------------------------- /dcat/dcat-tr-to-pr.md: -------------------------------------------------------------------------------- 1 | Previous transition at 2 | https://github.com/w3c/transitions/issues/169 3 | 4 | # Document title, URLs, estimated publication date 5 | 6 | Data Catalog Vocabulary (DCAT) - Version 2 7 | 8 | current ED : https://w3c.github.io/dxwg/dcat/ 9 | current CR : https://www.w3.org/TR/vocab-dcat-2 10 | Proposed: https://w3c.github.io/dxwg/dcat/?specStatus=PR;crEnd=2019-10-31;prEnd=2019-12-12;publishDate=2019-11-14 11 | 12 | # Abstract 13 | 14 | https://www.w3.org/TR/vocab-dcat-2/#abstract 15 | 16 | # Status 17 | 18 | https://w3c.github.io/dxwg/dcat/?specStatus=PR;crEnd=2019-10-31;prEnd=2019-12-12;publishDate=2019-11-14#sotd 19 | 20 | # Link to group's decision to request transition 21 | https://www.w3.org/2002/09/wbs/99375/dcat-to-pr/results 22 | 23 | 24 | 25 | # Changes since CR 26 | 27 | Diff: 28 | https://services.w3.org/htmldiff?doc1=https%3A%2F%2Fwww.w3.org%2FTR%2Fvocab-dcat-2%2F&doc2=https%3A%2F%2Flabs.w3.org%2Fspec-generator%2F%3Ftype%3Drespec%26url%3Dhttps%3A%2F%2Fw3c.github.io%2Fdxwg%2Fdcat%2F%3FspecStatus%3DPR%3BshortName%3Dvocab-dcat-2 29 | 30 | 31 | Minor editorial changes have been made: 32 | - [PR 1125](https://github.com/w3c/dxwg/pull/1125) has updated the owl version in dcat.ttl; 33 | - [PR 1127](https://github.com/w3c/dxwg/pull/1127) has uniformed the use of blanks and punctuation in the literals included in dcat.ttl; 34 | - [PR 1135]([https://github.com/w3c/dxwg/pull/1135](https://github.com/w3c/dxwg/pull/1135)) has fixed coordinate order in ga-courts example; 35 | - [PR 1136](https://github.com/w3c/dxwg/pull/1136) has inserted a note in section DCAT History to clarify that DCAT 2 maintains the DCAT namespace as it preserves backward compatibility with DCAT; 36 | - [PR 1140](https://github.com/w3c/dxwg/pull/1140) has revised some class descriptions. It has removed descriptions of dcat:accessRights and dct:license for dcat:DataServices. These descriptions were redundant as they are already provided in the class dcat:Resource from which the two properties are inherited; 37 | - [PR 1142](https://github.com/w3c/dxwg/pull/1142) has updated the acknowledgements; 38 | - [PR 1141](https://github.com/w3c/dxwg/pull/1141) and [PR 1143](https://github.com/w3c/dxwg/pull/1143) have updated the link to implementation report; 39 | 40 | # Requirements satisfied 41 | 42 | No changes since previous transition 43 | 44 | # Dependencies met (or not) 45 | 46 | No changes since previous transition 47 | 48 | # Wide Review 49 | 50 | 51 | There was some discussion about the use of "conforms to" (see https://github.com/w3c/dxwg/issues/1130 ) and this has been carried forward into future work that will perhaps be undertaken in a DCAT Primer document. 52 | 53 | See also implementation report 54 | 55 | # Issues addressed 56 | 57 | Closed issues: 58 | https://github.com/w3c/dxwg/issues?q=is%3Aissue+label%3Adcat+is%3Aclosed 59 | 60 | Open issues: 61 | https://github.com/w3c/dxwg/issues?q=is%3Aissue+label%3Adcat+is%3Aopen 62 | 63 | No further issues will be addressed for DCAT version 2, but there are issues being held for future work - https://github.com/w3c/dxwg/labels/future-work 64 | 65 | # Formal Objections 66 | 67 | None 68 | 69 | # Implementation 70 | https://w3c.github.io/dxwg/dcat-implementation-report/ 71 | 72 | Please note that the proposed updates to European Union and Member State application profiles of DCAT and the incorporation of DCAT v2 into other developing standards such as the registry of base registrys (ABR standard) are committments that will only be ratified if the DCAT v2 concludes successfully the W3C Rec Track. 73 | 74 | # Patent disclosures 75 | 76 | No changes since previous transition 77 | 78 | https://www.w3.org/2004/01/pp-impl/99375/status 79 | -------------------------------------------------------------------------------- /dcat/examples/basic-example.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: https://dcat.example.org/basic-example 2 | 3 | @prefix adms: . 4 | @prefix dcat: . 5 | @prefix dct: . 6 | @prefix ex: . 7 | @prefix foaf: . 8 | @prefix geosparql: . 9 | @prefix locn: . 10 | @prefix owl: . 11 | @prefix rdf: . 12 | @prefix rdfs: . 13 | @prefix skos: . 14 | @prefix time: . 15 | @prefix w3cgeo: . 16 | @prefix xsd: . 17 | 18 | ex:basic-example 19 | a owl:Ontology ; 20 | . 21 | ex:catalog 22 | a dcat:Catalog ; 23 | dct:language ; 24 | dct:publisher ex:transparency-office ; 25 | dct:title "Imaginary Catalog"@en ; 26 | rdfs:label "Imaginary Catalog"@en ; 27 | dcat:dataset ex:dataset-001 ; 28 | dcat:dataset ex:dataset-002 ; 29 | dcat:dataset ex:dataset-003 ; 30 | foaf:homepage ; 31 | . 32 | ex:dataset-001 33 | a dcat:Dataset ; 34 | dct:accrualPeriodicity ; 35 | dct:creator ex:finance-employee-001 ; 36 | dct:issued "2011-12-05"^^xsd:date ; 37 | dct:language ; 38 | dct:modified "2011-12-15"^^xsd:date ; 39 | dct:publisher ex:finance-ministry ; 40 | dct:spatial ; 41 | dct:temporal [ a dct:PeriodOfTime ; 42 | dcat:startDate "2011-07-01"^^xsd:date ; 43 | dcat:endDate "2011-09-30"^^xsd:date ; 44 | ]; 45 | dct:title "Imaginary dataset"@en ; 46 | dcat:contactPoint ; 47 | dcat:distribution ex:dataset-001-csv ; 48 | dcat:keyword "accountability"@en ; 49 | dcat:keyword "payments"@en ; 50 | dcat:keyword "transparency"@en ; 51 | dcat:spatialResolutionInMeters 30.0 ; 52 | dcat:temporalResolution "P1D"^^xsd:duration ; 53 | . 54 | ex:dataset-001-csv 55 | a dcat:Distribution ; 56 | dct:title "CSV distribution of imaginary dataset 001"@en ; 57 | dcat:byteSize "5120"^^xsd:decimal ; 58 | dcat:downloadURL ; 59 | dcat:mediaType ; 60 | . 61 | ex:transparency-office 62 | a foaf:Organization ; 63 | rdfs:label "Transparency Office"@en ; 64 | . 65 | -------------------------------------------------------------------------------- /dcat/examples/catalog-record-schema.jsonld: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "@id":"http://www.w3.org/ns/dcat#CatalogRecord" 4 | }, 5 | { 6 | "@id":"https://dcat.example.org/catalog", 7 | "http://www.w3.org/ns/dcat#record":[ 8 | { 9 | "@id":"https://dcat.example.org/record-001" 10 | } 11 | ] 12 | }, 13 | { 14 | "@id":"https://dcat.example.org/dataset-001" 15 | }, 16 | { 17 | "@id":"https://dcat.example.org/record-001", 18 | "@type":[ 19 | "http://www.w3.org/ns/dcat#CatalogRecord" 20 | ], 21 | "http://xmlns.com/foaf/0.1/primaryTopic":[ 22 | { 23 | "@id":"https://dcat.example.org/dataset-001" 24 | } 25 | ], 26 | "http://purl.org/dc/terms/issued":[ 27 | { 28 | "@value":"2011-12-11", 29 | "@type":"http://www.w3.org/2001/XMLSchema#date" 30 | } 31 | ], 32 | "http://purl.org/dc/terms/conformsTo":[ 33 | { 34 | "@id":"https://www.w3.org/TR/vocab-dcat/" 35 | } 36 | ] 37 | }, 38 | { 39 | "@id":"https://www.w3.org/TR/vocab-dcat/" 40 | } 41 | ] 42 | -------------------------------------------------------------------------------- /dcat/examples/catalog-record-schema.rdf: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 2011-12-11 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /dcat/examples/catalog-record-schema.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | @prefix dcat: . 3 | @prefix dcterms: . 4 | @prefix foaf: . 5 | @prefix xsd: . 6 | 7 | :catalog dcat:record :record-001 . 8 | 9 | :record-001 10 | a dcat:CatalogRecord ; 11 | foaf:primaryTopic :dataset-001 ; 12 | dcterms:issued "2011-12-11"^^xsd:date ; 13 | dcterms:conformsTo ; 14 | . 15 | -------------------------------------------------------------------------------- /dcat/examples/catalog-record.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@graph" : [ { 3 | "@id" : "ex:catalog", 4 | "@type" : "dcat:Catalog", 5 | "record" : "ex:record-001" 6 | }, { 7 | "@id" : "ex:catalog-record", 8 | "@type" : "owl:Ontology", 9 | "imports" : "http://www.w3.org/ns/dcat" 10 | }, { 11 | "@id" : "ex:record-001", 12 | "@type" : "dcat:CatalogRecord", 13 | "issued" : "2011-12-11", 14 | "primaryTopic" : "ex:dataset-001" 15 | } ], 16 | "@context" : { 17 | "imports" : { 18 | "@id" : "http://www.w3.org/2002/07/owl#imports", 19 | "@type" : "@id" 20 | }, 21 | "issued" : { 22 | "@id" : "http://purl.org/dc/terms/issued", 23 | "@type" : "http://www.w3.org/2001/XMLSchema#date" 24 | }, 25 | "primaryTopic" : { 26 | "@id" : "http://xmlns.com/foaf/0.1/primaryTopic", 27 | "@type" : "@id" 28 | }, 29 | "record" : { 30 | "@id" : "http://www.w3.org/ns/dcat#record", 31 | "@type" : "@id" 32 | }, 33 | "adms" : "https://www.w3.org/ns/adms#", 34 | "owl" : "http://www.w3.org/2002/07/owl#", 35 | "w3cgeo" : "http://www.w3.org/2003/01/geo/wgs84_pos#", 36 | "xsd" : "http://www.w3.org/2001/XMLSchema#", 37 | "skos" : "http://www.w3.org/2004/02/skos/core#", 38 | "rdfs" : "http://www.w3.org/2000/01/rdf-schema#", 39 | "geosparql" : "http://www.opengis.net/ont/geosparql#", 40 | "ex" : "https://dcat.example.org/", 41 | "dct" : "http://purl.org/dc/terms/", 42 | "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", 43 | "time" : "http://www.w3.org/2006/time#", 44 | "dcat" : "http://www.w3.org/ns/dcat#", 45 | "locn" : "http://www.w3.org/ns/locn#", 46 | "foaf" : "http://xmlns.com/foaf/0.1/" 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /dcat/examples/catalog-record.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: https://dcat.example.org/catalog-record 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix adms: . 5 | @prefix dcat: . 6 | @prefix dct: . 7 | @prefix ex: . 8 | @prefix foaf: . 9 | @prefix geosparql: . 10 | @prefix locn: . 11 | @prefix owl: . 12 | @prefix rdf: . 13 | @prefix rdfs: . 14 | @prefix skos: . 15 | @prefix time: . 16 | @prefix w3cgeo: . 17 | @prefix xsd: . 18 | 19 | ex:catalog 20 | a dcat:Catalog ; 21 | dcat:record ex:record-001 ; 22 | . 23 | ex:catalog-record 24 | a owl:Ontology ; 25 | owl:imports ; 26 | . 27 | ex:record-001 28 | a dcat:CatalogRecord ; 29 | dct:issued "2011-12-11"^^xsd:date ; 30 | foaf:primaryTopic ex:dataset-001 ; 31 | . 32 | -------------------------------------------------------------------------------- /dcat/examples/classifying-thematically.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@graph" : [ { 3 | "@id" : "ex:accountability", 4 | "@type" : "skos:Concept", 5 | "inScheme" : "ex:themes", 6 | "prefLabel" : { 7 | "@language" : "en", 8 | "@value" : "Accountability" 9 | } 10 | }, { 11 | "@id" : "ex:catalog", 12 | "@type" : "dcat:Catalog", 13 | "themeTaxonomy" : "ex:themes" 14 | }, { 15 | "@id" : "ex:classifying-thematically", 16 | "@type" : "owl:Ontology", 17 | "imports" : "http://www.w3.org/ns/dcat" 18 | }, { 19 | "@id" : "ex:dataset-001", 20 | "@type" : "dcat:Dataset", 21 | "theme" : "ex:accountability" 22 | }, { 23 | "@id" : "ex:themes", 24 | "@type" : "skos:ConceptScheme", 25 | "prefLabel" : { 26 | "@language" : "en", 27 | "@value" : "A set of domains to classify documents" 28 | } 29 | } ], 30 | "@context" : { 31 | "prefLabel" : { 32 | "@id" : "http://www.w3.org/2004/02/skos/core#prefLabel" 33 | }, 34 | "inScheme" : { 35 | "@id" : "http://www.w3.org/2004/02/skos/core#inScheme", 36 | "@type" : "@id" 37 | }, 38 | "imports" : { 39 | "@id" : "http://www.w3.org/2002/07/owl#imports", 40 | "@type" : "@id" 41 | }, 42 | "themeTaxonomy" : { 43 | "@id" : "http://www.w3.org/ns/dcat#themeTaxonomy", 44 | "@type" : "@id" 45 | }, 46 | "theme" : { 47 | "@id" : "http://www.w3.org/ns/dcat#theme", 48 | "@type" : "@id" 49 | }, 50 | "adms" : "https://www.w3.org/ns/adms#", 51 | "owl" : "http://www.w3.org/2002/07/owl#", 52 | "w3cgeo" : "http://www.w3.org/2003/01/geo/wgs84_pos#", 53 | "xsd" : "http://www.w3.org/2001/XMLSchema#", 54 | "skos" : "http://www.w3.org/2004/02/skos/core#", 55 | "rdfs" : "http://www.w3.org/2000/01/rdf-schema#", 56 | "geosparql" : "http://www.opengis.net/ont/geosparql#", 57 | "ex" : "https://dcat.example.org/", 58 | "dct" : "http://purl.org/dc/terms/", 59 | "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", 60 | "time" : "http://www.w3.org/2006/time#", 61 | "dcat" : "http://www.w3.org/ns/dcat#", 62 | "locn" : "http://www.w3.org/ns/locn#", 63 | "foaf" : "http://xmlns.com/foaf/0.1/" 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /dcat/examples/classifying-thematically.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: https://dcat.example.org/classifying-thematically 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix adms: . 5 | @prefix dcat: . 6 | @prefix dct: . 7 | @prefix ex: . 8 | @prefix foaf: . 9 | @prefix geosparql: . 10 | @prefix locn: . 11 | @prefix owl: . 12 | @prefix rdf: . 13 | @prefix rdfs: . 14 | @prefix skos: . 15 | @prefix time: . 16 | @prefix w3cgeo: . 17 | @prefix xsd: . 18 | 19 | ex:accountability 20 | a skos:Concept ; 21 | skos:inScheme ex:themes ; 22 | skos:prefLabel "Accountability"@en ; 23 | . 24 | ex:catalog 25 | a dcat:Catalog ; 26 | dcat:themeTaxonomy ex:themes ; 27 | . 28 | ex:classifying-thematically 29 | a owl:Ontology ; 30 | owl:imports ; 31 | . 32 | ex:dataset-001 33 | a dcat:Dataset ; 34 | dcat:theme ex:accountability ; 35 | . 36 | ex:themes 37 | a skos:ConceptScheme ; 38 | skos:prefLabel "A set of domains to classify documents"@en ; 39 | . 40 | -------------------------------------------------------------------------------- /dcat/examples/classifying-types.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@graph" : [ { 3 | "@id" : "http://registry.it.csiro.au/def/datacite/resourceType/Text", 4 | "dct:source" : { 5 | "@language" : "en", 6 | "@value" : "DataCite resource types" 7 | }, 8 | "rdfs:label" : { 9 | "@language" : "en", 10 | "@value" : "Text" 11 | } 12 | }, { 13 | "@id" : "http://registry.it.csiro.au/def/re3data/contentType/doc", 14 | "dct:source" : { 15 | "@language" : "en", 16 | "@value" : "Re3data content types" 17 | }, 18 | "rdfs:label" : { 19 | "@language" : "en", 20 | "@value" : "Standard office documents" 21 | } 22 | }, { 23 | "@id" : "ex:classifying-types", 24 | "@type" : "owl:Ontology", 25 | "imports" : "http://www.w3.org/ns/dcat" 26 | }, { 27 | "@id" : "ex:dataset-001-1", 28 | "@type" : "dcat:Dataset", 29 | "type" : "http://purl.org/dc/dcmitype/Dataset" 30 | }, { 31 | "@id" : "ex:dataset-001-2", 32 | "@type" : "dcat:Dataset", 33 | "type" : "http://id.loc.gov/vocabulary/marcgt/dtb" 34 | }, { 35 | "@id" : "ex:dataset-001-3", 36 | "@type" : "dcat:Dataset", 37 | "type" : [ "http://registry.it.csiro.au/def/re3data/contentType/database", "http://registry.it.csiro.au/def/datacite/resourceType/Dataset", "http://id.loc.gov/vocabulary/marcgt/dtb", "http://purl.org/dc/dcmitype/Dataset" ] 38 | } ], 39 | "@context" : { 40 | "label" : { 41 | "@id" : "http://www.w3.org/2000/01/rdf-schema#label", 42 | "@type" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString" 43 | }, 44 | "source" : { 45 | "@id" : "http://purl.org/dc/terms/source", 46 | "@type" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString" 47 | }, 48 | "type" : { 49 | "@id" : "http://purl.org/dc/terms/type", 50 | "@type" : "@id" 51 | }, 52 | "imports" : { 53 | "@id" : "http://www.w3.org/2002/07/owl#imports", 54 | "@type" : "@id" 55 | }, 56 | "adms" : "https://www.w3.org/ns/adms#", 57 | "owl" : "http://www.w3.org/2002/07/owl#", 58 | "w3cgeo" : "http://www.w3.org/2003/01/geo/wgs84_pos#", 59 | "xsd" : "http://www.w3.org/2001/XMLSchema#", 60 | "skos" : "http://www.w3.org/2004/02/skos/core#", 61 | "rdfs" : "http://www.w3.org/2000/01/rdf-schema#", 62 | "geosparql" : "http://www.opengis.net/ont/geosparql#", 63 | "ex" : "https://dcat.example.org/", 64 | "dct" : "http://purl.org/dc/terms/", 65 | "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", 66 | "time" : "http://www.w3.org/2006/time#", 67 | "dcat" : "http://www.w3.org/ns/dcat#", 68 | "locn" : "http://www.w3.org/ns/locn#", 69 | "foaf" : "http://xmlns.com/foaf/0.1/" 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /dcat/examples/classifying-types.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: https://dcat.example.org/classifying-types 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix adms: . 5 | @prefix dcat: . 6 | @prefix dct: . 7 | @prefix ex: . 8 | @prefix foaf: . 9 | @prefix geosparql: . 10 | @prefix locn: . 11 | @prefix owl: . 12 | @prefix rdf: . 13 | @prefix rdfs: . 14 | @prefix skos: . 15 | @prefix time: . 16 | @prefix w3cgeo: . 17 | @prefix xsd: . 18 | 19 | 20 | dct:source "DataCite resource types"@en ; 21 | rdfs:label "Text"@en ; 22 | . 23 | 24 | dct:source "Re3data content types"@en ; 25 | rdfs:label "Standard office documents"@en ; 26 | . 27 | ex:classifying-types 28 | a owl:Ontology ; 29 | owl:imports ; 30 | . 31 | ex:dataset-001-1 32 | a dcat:Dataset ; 33 | dct:type ; 34 | . 35 | ex:dataset-001-2 36 | a dcat:Dataset ; 37 | dct:type ; 38 | . 39 | ex:dataset-001-3 40 | a dcat:Dataset ; 41 | dct:type ; 42 | dct:type ; 43 | dct:type ; 44 | dct:type ; 45 | . 46 | -------------------------------------------------------------------------------- /dcat/examples/compress-and-package.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@graph" : [ { 3 | "@id" : "https://data.example.au/compressed/", 4 | "@type" : "owl:Ontology" 5 | }, { 6 | "@id" : "https://data.gov.cz/zdroj/datová-sada/247025684/22", 7 | "@type" : "dcat:Distribution", 8 | "conformsTo" : "https://mvcr1.opendata.cz/czechpoint/2007.json", 9 | "format" : "http://publications.europa.eu/resource/authority/file-type/CSV", 10 | "license" : "https://data.gov.cz/podmínky-užití/volný-přístup/", 11 | "accessURL" : [ "https://mvcr1.opendata.cz/czechpoint/data.tar", "https://mvcr1.opendata.cz/czechpoint/2007.csv.gz", "https://mvcr1.opendata.cz/czechpoint/data.tar.gz" ], 12 | "compressFormat" : "http://www.iana.org/assignments/media-types/application/gzip", 13 | "downloadURL" : [ "https://mvcr1.opendata.cz/czechpoint/2007.csv.gz", "https://mvcr1.opendata.cz/czechpoint/data.tar.gz", "https://mvcr1.opendata.cz/czechpoint/data.tar" ], 14 | "mediaType" : "http://www.iana.org/assignments/media-types/text/csv", 15 | "packageFormat" : "http://publications.europa.eu/resource/authority/file-type/TAR" 16 | } ], 17 | "@context" : { 18 | "accessURL" : { 19 | "@id" : "http://www.w3.org/ns/dcat#accessURL", 20 | "@type" : "@id" 21 | }, 22 | "format" : { 23 | "@id" : "http://purl.org/dc/terms/format", 24 | "@type" : "@id" 25 | }, 26 | "mediaType" : { 27 | "@id" : "http://www.w3.org/ns/dcat#mediaType", 28 | "@type" : "@id" 29 | }, 30 | "packageFormat" : { 31 | "@id" : "http://www.w3.org/ns/dcat#packageFormat", 32 | "@type" : "@id" 33 | }, 34 | "downloadURL" : { 35 | "@id" : "http://www.w3.org/ns/dcat#downloadURL", 36 | "@type" : "@id" 37 | }, 38 | "license" : { 39 | "@id" : "http://purl.org/dc/terms/license", 40 | "@type" : "@id" 41 | }, 42 | "compressFormat" : { 43 | "@id" : "http://www.w3.org/ns/dcat#compressFormat", 44 | "@type" : "@id" 45 | }, 46 | "conformsTo" : { 47 | "@id" : "http://purl.org/dc/terms/conformsTo", 48 | "@type" : "@id" 49 | }, 50 | "adms" : "http://www.w3.org/ns/adms#", 51 | "owl" : "http://www.w3.org/2002/07/owl#", 52 | "xsd" : "http://www.w3.org/2001/XMLSchema#", 53 | "proj" : "http://www.w3.org/ns/project#", 54 | "skos" : "http://www.w3.org/2004/02/skos/core#", 55 | "rdfs" : "http://www.w3.org/2000/01/rdf-schema#", 56 | "dap" : "https://data.csiro.au/dataset/", 57 | "dct" : "http://purl.org/dc/terms/", 58 | "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", 59 | "v" : "http://www.w3.org/2006/vcard/ns#", 60 | "time" : "http://www.w3.org/2006/time#", 61 | "dcat" : "http://www.w3.org/ns/dcat#", 62 | "prov" : "http://www.w3.org/ns/prov#" 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /dcat/examples/compress-and-package.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: https://data.example.au/compressed/ 2 | # imports: http://www.w3.org/2006/time 3 | # imports: http://www.w3.org/2006/vcard/ns 4 | # imports: http://www.w3.org/ns/adms 5 | # imports: http://www.w3.org/ns/dcat 6 | # imports: http://www.w3.org/ns/project 7 | # prefix: dap 8 | 9 | @prefix adms: . 10 | @prefix dap: . 11 | @prefix dcat: . 12 | @prefix dct: . 13 | @prefix owl: . 14 | @prefix proj: . 15 | @prefix prov: . 16 | @prefix rdf: . 17 | @prefix rdfs: . 18 | @prefix skos: . 19 | @prefix time: . 20 | @prefix v: . 21 | @prefix xsd: . 22 | 23 | 24 | a dcat:Distribution ; 25 | dcat:accessURL ; 26 | dcat:downloadURL ; 27 | dct:license ; 28 | dct:conformsTo ; 29 | dct:format ; 30 | dcat:mediaType ; 31 | dcat:compressFormat . 32 | 33 | # packaging 34 | 35 | a dcat:Distribution ; 36 | dcat:accessURL ; 37 | dcat:downloadURL ; 38 | dct:license ; 39 | dct:conformsTo ; 40 | dct:format ; 41 | dcat:mediaType ; 42 | dcat:packageFormat . 43 | 44 | # packaging and compression 45 | 46 | a dcat:Distribution ; 47 | dcat:accessURL ; 48 | dcat:downloadURL ; 49 | dct:conformsTo ; 50 | dct:license ; 51 | dct:format ; 52 | dcat:mediaType ; 53 | dcat:packageFormat ; 54 | dcat:compressFormat . 55 | -------------------------------------------------------------------------------- /dcat/examples/dataset-002.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@graph" : [ { 3 | "@id" : "http://dcat.example.org/dataset-002", 4 | "@type" : "dcat:Dataset", 5 | "distribution" : "http://dcat.example.org/dataset-002-csv", 6 | "landingPage" : "http://example.org/dataset-002.html" 7 | }, { 8 | "@id" : "http://dcat.example.org/dataset-002-csv", 9 | "@type" : "dcat:Distribution", 10 | "accessURL" : "http://example.org/dataset-002.html", 11 | "mediaType" : "https://www.iana.org/assignments/media-types/text/csv" 12 | }, { 13 | "@id" : "http://example.org/dataset-002", 14 | "@type" : "owl:Ontology", 15 | "imports" : "http://www.w3.org/ns/dcat" 16 | } ], 17 | "@context" : { 18 | "mediaType" : { 19 | "@id" : "http://www.w3.org/ns/dcat#mediaType", 20 | "@type" : "@id" 21 | }, 22 | "accessURL" : { 23 | "@id" : "http://www.w3.org/ns/dcat#accessURL", 24 | "@type" : "@id" 25 | }, 26 | "imports" : { 27 | "@id" : "http://www.w3.org/2002/07/owl#imports", 28 | "@type" : "@id" 29 | }, 30 | "distribution" : { 31 | "@id" : "http://www.w3.org/ns/dcat#distribution", 32 | "@type" : "@id" 33 | }, 34 | "landingPage" : { 35 | "@id" : "http://www.w3.org/ns/dcat#landingPage", 36 | "@type" : "@id" 37 | }, 38 | "@vocab" : "http://dcat.example.org/", 39 | "dct" : "http://purl.org/dc/terms/", 40 | "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", 41 | "owl" : "http://www.w3.org/2002/07/owl#", 42 | "xsd" : "http://www.w3.org/2001/XMLSchema#", 43 | "rdfs" : "http://www.w3.org/2000/01/rdf-schema#", 44 | "dcat" : "http://www.w3.org/ns/dcat#" 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /dcat/examples/dataset-002.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: http://example.org/dataset-002 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix : . 5 | @prefix dcat: . 6 | @prefix dct: . 7 | @prefix owl: . 8 | @prefix rdf: . 9 | @prefix rdfs: . 10 | @prefix xsd: . 11 | 12 | 13 | rdf:type owl:Ontology ; 14 | owl:imports ; 15 | . 16 | :dataset-002 17 | a dcat:Dataset ; 18 | dcat:landingPage ; 19 | dcat:distribution :dataset-002-csv ; 20 | . 21 | :dataset-002-csv 22 | a dcat:Distribution ; 23 | dcat:accessURL ; 24 | dcat:mediaType ; 25 | . -------------------------------------------------------------------------------- /dcat/examples/dataset-003.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@graph" : [ { 3 | "@id" : "http://dcat.example.org/dataset-003", 4 | "@type" : "dcat:Dataset", 5 | "distribution" : "http://dcat.example.org/dataset-003-csv", 6 | "landingPage" : "http://example.org/dataset-003.html" 7 | }, { 8 | "@id" : "http://dcat.example.org/dataset-003-csv", 9 | "@type" : "dcat:Distribution", 10 | "downloadURL" : "http://example.org/dataset-003.csv", 11 | "mediaType" : "https://www.iana.org/assignments/media-types/text/csv" 12 | }, { 13 | "@id" : "http://example.org/dataset-003", 14 | "@type" : "owl:Ontology", 15 | "imports" : "http://www.w3.org/ns/dcat" 16 | } ], 17 | "@context" : { 18 | "imports" : { 19 | "@id" : "http://www.w3.org/2002/07/owl#imports", 20 | "@type" : "@id" 21 | }, 22 | "distribution" : { 23 | "@id" : "http://www.w3.org/ns/dcat#distribution", 24 | "@type" : "@id" 25 | }, 26 | "landingPage" : { 27 | "@id" : "http://www.w3.org/ns/dcat#landingPage", 28 | "@type" : "@id" 29 | }, 30 | "mediaType" : { 31 | "@id" : "http://www.w3.org/ns/dcat#mediaType", 32 | "@type" : "@id" 33 | }, 34 | "downloadURL" : { 35 | "@id" : "http://www.w3.org/ns/dcat#downloadURL", 36 | "@type" : "@id" 37 | }, 38 | "@vocab" : "http://dcat.example.org/", 39 | "dct" : "http://purl.org/dc/terms/", 40 | "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", 41 | "owl" : "http://www.w3.org/2002/07/owl#", 42 | "xsd" : "http://www.w3.org/2001/XMLSchema#", 43 | "rdfs" : "http://www.w3.org/2000/01/rdf-schema#", 44 | "dcat" : "http://www.w3.org/ns/dcat#" 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /dcat/examples/dataset-003.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: http://example.org/dataset-003 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix : . 5 | @prefix dcat: . 6 | @prefix dct: . 7 | @prefix owl: . 8 | @prefix rdf: . 9 | @prefix rdfs: . 10 | @prefix xsd: . 11 | 12 | 13 | rdf:type owl:Ontology ; 14 | owl:imports ; 15 | . 16 | :dataset-003 17 | a dcat:Dataset ; 18 | dcat:landingPage ; 19 | dcat:distribution :dataset-003-csv ; 20 | . 21 | :dataset-003-csv 22 | a dcat:Distribution ; 23 | dcat:downloadURL ; 24 | dcat:mediaType ; 25 | . -------------------------------------------------------------------------------- /dcat/examples/dataset-004-sdo.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@graph" : [ { 3 | "@id" : "http://example.org/dataset-004/s/", 4 | "@type" : "owl:Ontology", 5 | "conformsTo" : "http://schema.org/", 6 | "comment" : "This graph provides a schema.org-conformant representation of a catalog entry together with some related resource descriptions", 7 | "imports" : [ "http://www.w3.org/ns/dcat", "http://schema.org/" ] 8 | }, { 9 | "@id" : "http://example.org/dataset-004/s/dataset-004", 10 | "@type" : "sdo:Dataset", 11 | "distribution" : [ "http://example.org/dataset-004/s/dataset-004-png", "http://example.org/dataset-004/s/dataset-004-csv" ] 12 | }, { 13 | "@id" : "http://example.org/dataset-004/s/dataset-004-csv", 14 | "@type" : "sdo:DataDownload", 15 | "encodingFormat" : "mime:text/csv", 16 | "url" : "http://example.org/api/table-005", 17 | "accessService" : "http://example.org/dataset-004/s/table-service-005" 18 | }, { 19 | "@id" : "http://example.org/dataset-004/s/dataset-004-png", 20 | "@type" : "sdo:DataDownload", 21 | "encodingFormat" : "mime:image/png", 22 | "url" : "http://example.org/api/figure-006", 23 | "accessService" : "http://example.org/dataset-004/s/figure-service-006" 24 | }, { 25 | "@id" : "http://example.org/dataset-004/s/figure-service-006", 26 | "@type" : "sdo:EntryPoint", 27 | "conformsTo" : "http://example.org/apidef/figure/v1.0", 28 | "additionalType" : "https://inspire.ec.europa.eu/metadata-codelist/SpatialDataServiceType/view", 29 | "url" : "http://example.org/api/figure-006" 30 | }, { 31 | "@id" : "http://example.org/dataset-004/s/table-service-005", 32 | "@type" : "sdo:EntryPoint", 33 | "conformsTo" : "http://example.org/apidef/table/v2.2", 34 | "additionalType" : "https://inspire.ec.europa.eu/metadata-codelist/SpatialDataServiceType/download", 35 | "url" : "http://example.org/api/table-005" 36 | } ], 37 | "@context" : { 38 | "url" : { 39 | "@id" : "http://schema.org/url", 40 | "@type" : "@id" 41 | }, 42 | "additionalType" : { 43 | "@id" : "http://schema.org/additionalType", 44 | "@type" : "@id" 45 | }, 46 | "conformsTo" : { 47 | "@id" : "http://purl.org/dc/terms/conformsTo", 48 | "@type" : "@id" 49 | }, 50 | "imports" : { 51 | "@id" : "http://www.w3.org/2002/07/owl#imports", 52 | "@type" : "@id" 53 | }, 54 | "comment" : { 55 | "@id" : "http://schema.org/comment" 56 | }, 57 | "encodingFormat" : { 58 | "@id" : "http://schema.org/encodingFormat", 59 | "@type" : "@id" 60 | }, 61 | "accessService" : { 62 | "@id" : "http://www.w3.org/ns/dcat#accessService", 63 | "@type" : "@id" 64 | }, 65 | "distribution" : { 66 | "@id" : "http://schema.org/distribution", 67 | "@type" : "@id" 68 | }, 69 | "@vocab" : "http://example.org/dataset-004/s/", 70 | "dap" : "https://data.csiro.au/dataset/", 71 | "dct" : "http://purl.org/dc/terms/", 72 | "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", 73 | "owl" : "http://www.w3.org/2002/07/owl#", 74 | "dctype" : "http://purl.org/dc/dcmitype/", 75 | "mime" : "https://www.iana.org/assignments/media-types/", 76 | "xsd" : "http://www.w3.org/2001/XMLSchema#", 77 | "rdfs" : "http://www.w3.org/2000/01/rdf-schema#", 78 | "dcat" : "http://www.w3.org/ns/dcat#", 79 | "sdo" : "http://schema.org/" 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /dcat/examples/dataset-004-sdo.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: http://example.org/dataset-004/s/ 2 | # imports: http://schema.org/ 3 | # imports: http://www.w3.org/ns/dcat 4 | 5 | @prefix : . 6 | @prefix dap: . 7 | @prefix dcat: . 8 | @prefix dct: . 9 | @prefix dctype: . 10 | @prefix mime: . 11 | @prefix owl: . 12 | @prefix rdf: . 13 | @prefix rdfs: . 14 | @prefix sdo: . 15 | @prefix xsd: . 16 | 17 | 18 | rdf:type owl:Ontology ; 19 | dct:conformsTo sdo: ; 20 | sdo:comment "This graph provides a schema.org-conformant representation of a catalog entry together with some related resource descriptions"@en ; 21 | owl:imports sdo: ; 22 | owl:imports ; 23 | . 24 | :dataset-004 25 | a sdo:Dataset ; 26 | sdo:distribution :dataset-004-csv ; 27 | sdo:distribution :dataset-004-png ; 28 | . 29 | :dataset-004-csv 30 | a sdo:DataDownload ; 31 | dcat:accessService :table-service-005 ; 32 | sdo:url ; 33 | sdo:encodingFormat ; 34 | . 35 | :dataset-004-png 36 | a sdo:DataDownload ; 37 | dcat:accessService :figure-service-006 ; 38 | sdo:url ; 39 | sdo:encodingFormat ; 40 | . 41 | :figure-service-006 42 | a sdo:EntryPoint ; 43 | dct:conformsTo ; 44 | sdo:additionalType ; 45 | sdo:url ; 46 | . 47 | :table-service-005 48 | a sdo:EntryPoint ; 49 | dct:conformsTo ; 50 | sdo:additionalType ; 51 | sdo:url ; 52 | . 53 | -------------------------------------------------------------------------------- /dcat/examples/dataset-004.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@graph" : [ { 3 | "@id" : "http://example.org/dataset-004", 4 | "@type" : "owl:Ontology", 5 | "imports" : "http://www.w3.org/ns/dcat" 6 | }, { 7 | "@id" : "http://example.org/dataset-004#dataset-004", 8 | "@type" : "dcat:Dataset", 9 | "distribution" : [ "http://example.org/dataset-004#dataset-004-png", "http://example.org/dataset-004#dataset-004-csv" ] 10 | }, { 11 | "@id" : "http://example.org/dataset-004#dataset-004-csv", 12 | "@type" : "dcat:Distribution", 13 | "accessService" : "http://example.org/dataset-004#table-service-005", 14 | "accessURL" : "http://example.org/api/table-005", 15 | "mediaType" : "https://www.iana.org/assignments/media-types/text/csv" 16 | }, { 17 | "@id" : "http://example.org/dataset-004#dataset-004-png", 18 | "@type" : "dcat:Distribution", 19 | "accessService" : "http://example.org/dataset-004#figure-service-006", 20 | "accessURL" : "http://example.org/api/figure-006", 21 | "mediaType" : "https://www.iana.org/assignments/media-types/image/png" 22 | }, { 23 | "@id" : "http://example.org/dataset-004#figure-service-006", 24 | "@type" : "dcat:DataService", 25 | "conformsTo" : "http://example.org/apidef/figure/v1.0", 26 | "type" : "https://inspire.ec.europa.eu/metadata-codelist/SpatialDataServiceType/view", 27 | "endpointDescription" : "http://example.org/api/figure-006/params", 28 | "endpointURL" : "http://example.org/api/figure-006", 29 | "servesDataset" : "http://example.org/dataset-004#dataset-004" 30 | }, { 31 | "@id" : "http://example.org/dataset-004#table-service-005", 32 | "@type" : "dcat:DataService", 33 | "conformsTo" : "http://example.org/apidef/table/v2.2", 34 | "type" : "https://inspire.ec.europa.eu/metadata-codelist/SpatialDataServiceType/download", 35 | "endpointDescription" : "http://example.org/api/table-005/capability", 36 | "endpointURL" : "http://example.org/api/table-005", 37 | "servesDataset" : "http://example.org/dataset-004#dataset-004" 38 | } ], 39 | "@context" : { 40 | "distribution" : { 41 | "@id" : "http://www.w3.org/ns/dcat#distribution", 42 | "@type" : "@id" 43 | }, 44 | "mediaType" : { 45 | "@id" : "http://www.w3.org/ns/dcat#mediaType", 46 | "@type" : "@id" 47 | }, 48 | "accessURL" : { 49 | "@id" : "http://www.w3.org/ns/dcat#accessURL", 50 | "@type" : "@id" 51 | }, 52 | "accessService" : { 53 | "@id" : "http://www.w3.org/ns/dcat#accessService", 54 | "@type" : "@id" 55 | }, 56 | "imports" : { 57 | "@id" : "http://www.w3.org/2002/07/owl#imports", 58 | "@type" : "@id" 59 | }, 60 | "servesDataset" : { 61 | "@id" : "http://www.w3.org/ns/dcat#servesDataset", 62 | "@type" : "@id" 63 | }, 64 | "endpointURL" : { 65 | "@id" : "http://www.w3.org/ns/dcat#endpointURL", 66 | "@type" : "@id" 67 | }, 68 | "endpointDescription" : { 69 | "@id" : "http://www.w3.org/ns/dcat#endpointDescription", 70 | "@type" : "@id" 71 | }, 72 | "type" : { 73 | "@id" : "http://purl.org/dc/terms/type", 74 | "@type" : "@id" 75 | }, 76 | "conformsTo" : { 77 | "@id" : "http://purl.org/dc/terms/conformsTo", 78 | "@type" : "@id" 79 | }, 80 | "@vocab" : "http://example.org/dataset-004#", 81 | "dct" : "http://purl.org/dc/terms/", 82 | "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", 83 | "owl" : "http://www.w3.org/2002/07/owl#", 84 | "xsd" : "http://www.w3.org/2001/XMLSchema#", 85 | "rdfs" : "http://www.w3.org/2000/01/rdf-schema#", 86 | "dcat" : "http://www.w3.org/ns/dcat#" 87 | } 88 | } 89 | -------------------------------------------------------------------------------- /dcat/examples/dataset-004.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: http://example.org/dataset-004 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix : . 5 | @prefix dcat: . 6 | @prefix dct: . 7 | @prefix owl: . 8 | @prefix rdf: . 9 | @prefix rdfs: . 10 | @prefix xsd: . 11 | 12 | 13 | rdf:type owl:Ontology ; 14 | owl:imports ; 15 | . 16 | :dataset-004 17 | rdf:type dcat:Dataset ; 18 | dcat:distribution :dataset-004-csv ; 19 | dcat:distribution :dataset-004-png ; 20 | . 21 | :dataset-004-csv 22 | rdf:type dcat:Distribution ; 23 | dcat:accessService :table-service-005 ; 24 | dcat:accessURL ; 25 | dcat:mediaType ; 26 | . 27 | :dataset-004-png 28 | rdf:type dcat:Distribution ; 29 | dcat:accessService :figure-service-006 ; 30 | dcat:accessURL ; 31 | dcat:mediaType ; 32 | . 33 | :figure-service-006 34 | rdf:type dcat:DataService ; 35 | dct:conformsTo ; 36 | dct:type ; 37 | dcat:endpointDescription ; 38 | dcat:endpointURL ; 39 | dcat:servesDataset :dataset-004 ; 40 | . 41 | :table-service-005 42 | rdf:type dcat:DataService ; 43 | dct:conformsTo ; 44 | dct:type ; 45 | dcat:endpointDescription ; 46 | dcat:endpointURL ; 47 | dcat:servesDataset :dataset-004 ; 48 | . 49 | -------------------------------------------------------------------------------- /dcat/examples/dryad-globtherm-sdata.ttl: -------------------------------------------------------------------------------- 1 | @prefix dct: . 2 | @prefix xsd: . 3 | @prefix : . 4 | 5 | :globtherm 6 | dct:title "Data from: GlobTherm, a global database on thermal tolerances for aquatic and terrestrial organisms"@en ; 7 | dct:description "How climate affects species distributions is a longstanding question receiving renewed interest owing to the need to predict the impacts of global warming on biodiversity. Is climate change forcing species to live near their critical thermal limits? Are these limits likely to change through natural selection? These and other important questions can be addressed with models relating geographical distributions of species with climate data, but inferences made with these models are highly contingent on non-climatic factors such as biotic interactions. Improved understanding of climate change effects on species will require extensive analysis of thermal physiological traits, but such data are scarce and scattered. To overcome current limitations, we created the GlobTherm database. The database contains experimentally derived species’ thermal tolerance data currently comprising over 2,000 species of terrestrial, freshwater, intertidal and marine multicellular algae, plants, fungi, and animals. The GlobTherm database will be maintained and curated by iDiv with the aim of expanding it, and enable further investigations on the effects of climate on the distribution of life on Earth."@en ; 8 | dct:identifier "https://doi.org/10.5061/dryad.1cv08"^^xsd:anyURI ; 9 | dct:creator ; 10 | dct:relation ; 11 | dct:relation ; 12 | dct:isReferencedBy 13 | . 14 | -------------------------------------------------------------------------------- /dcat/examples/ga-wms.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: https://example.org/ga-wms 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix dcat: . 5 | @prefix dct: . 6 | @prefix dctype: . 7 | @prefix ga-wms: . 8 | @prefix gsp: . 9 | @prefix locn: . 10 | @prefix owl: . 11 | @prefix rdf: . 12 | @prefix rdfs: . 13 | @prefix xsd: . 14 | 15 | 16 | rdf:type owl:Ontology ; 17 | dct:created "2018-09-12" ; 18 | dct:creator ; 19 | rdfs:comment "Example of DCAT record of a dataset published by Geoscience Australia"@en ; 20 | rdfs:label "GA WMS"@en ; 21 | owl:imports ; 22 | . 23 | ga-wms:DEM_SRTM_1Second_Hydro_Enforced 24 | rdf:type dcat:DataService ; 25 | dct:conformsTo ; 26 | dct:description "This Service represents the National Digital Elevation Model (DEM) 1 Second Hydrologically Enforced product, derived from the National DEM SRTM 1 Second and National Watercourses, lakes and Reservoirs."@en ; 27 | dct:spatial [ 28 | rdf:type dct:Location ; 29 | locn:geometry "112.999861 -44.000139153.999861 -10.000139"^^gsp:gmlLiteral ; 30 | ] ; 31 | dct:title "Digital Elevation Model (DEM) of Australia derived from STRM with 1 Second Grid - Hydrologically Enforced"@en ; 32 | dct:type dctype:Service ; 33 | dct:type ; 34 | dcat:endpointDescription ; 35 | dcat:endpointURL ; 36 | dcat:keyword "DEM" ; 37 | dcat:keyword "ECOLOGY Landscape"@en ; 38 | dcat:keyword "LAND Topography Models"@en ; 39 | . 40 | -------------------------------------------------------------------------------- /dcat/examples/genoa-busstop.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: https://dcat.example.org/genoa-busstop 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix : . 5 | @prefix adms: . 6 | @prefix dcat: . 7 | @prefix dct: . 8 | @prefix dqv: . 9 | @prefix foaf: . 10 | @prefix geosparql: . 11 | @prefix ldqd: . 12 | @prefix locn: . 13 | @prefix oa: . 14 | @prefix owl: . 15 | @prefix prov: . 16 | @prefix rdf: . 17 | @prefix rdfs: . 18 | @prefix skos: . 19 | @prefix time: . 20 | @prefix w3cgeo: . 21 | @prefix xsd: . 22 | 23 | :completenessWRTExpectedNumberOfEntities 24 | a dqv:Metric ; 25 | skos:definition "The degree of completeness as ratio between the actual number of entities included in the dataset and the declared expected number of entities."@en ; 26 | dqv:expectedDataType xsd:decimal ; 27 | dqv:inDimension ldqd:completeness ; 28 | . 29 | :genoa-busstop 30 | a owl:Ontology ; 31 | owl:imports ; 32 | . 33 | :genoaBusStopsDataset 34 | a dcat:Dataset ; 35 | dqv:hasQualityAnnotation :genoaBusStopsDatasetCompletenessNote ; 36 | dqv:hasQualityMeasurement :genoaBusStopsDatasetCompletenessMeasurement ; 37 | . 38 | :genoaBusStopsDatasetCompletenessMeasurement 39 | a dqv:QualityMeasurement ; 40 | dqv:computedOn :genoaBusStopsDataset ; 41 | dqv:isMeasurementOf :completenessWRTExpectedNumberOfEntities ; 42 | dqv:value 0.6833333 ; 43 | prov:generatedAtTime "2018-05-27T02:52:02Z"^^xsd:dateTime ; 44 | prov:wasAttributedTo :myQualityChecker ; 45 | prov:wasGeneratedBy :myQualityChecking ; 46 | . 47 | :genoaBusStopsDatasetCompletenessNote 48 | a dqv:UserQualityFeedback ; 49 | dqv:inDimension ldqd:completeness ; 50 | oa:hasBody :textBody ; 51 | oa:hasTarget :genoaBusStopsDataset ; 52 | oa:motivatedBy dqv:qualityAssessment ; 53 | prov:generatedAtTime "2018-05-27T02:52:02Z"^^xsd:dateTime ; 54 | prov:wasAttributedTo :consumer1 ; 55 | . 56 | :myQualityChecker 57 | a prov:SoftwareAgent ; 58 | rdfs:label "A quality assessment service"@en ; 59 | . 60 | :myQualityChecking 61 | a prov:Activity ; 62 | rdfs:label "The checking of genoaBusStopsDataset's quality"@en ; 63 | prov:endedAtTime "2018-05-27T02:52:02Z"^^xsd:dateTime ; 64 | prov:generated :genoaBusStopsDatasetCompletenessMeasurement ; 65 | prov:startedAtTime "2018-05-27T00:52:02Z"^^xsd:dateTime ; 66 | prov:used :genoaBusStopsDataset ; 67 | prov:wasAssociatedWith :myQualityChecker ; 68 | . 69 | :textBody 70 | a oa:TextualBody ; 71 | dct:format "text/plain" ; 72 | dct:language "en" ; 73 | rdf:value "Incomplete dataset: it contains only 20500 out of 30000 existing bus stops" ; 74 | . 75 | -------------------------------------------------------------------------------- /dcat/examples/identifier-types.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: https://dcat.example.org/identifier-types 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix adms: . 5 | @prefix dcat: . 6 | @prefix dct: . 7 | @prefix ex: . 8 | @prefix foaf: . 9 | @prefix geosparql: . 10 | @prefix locn: . 11 | @prefix owl: . 12 | @prefix rdf: . 13 | @prefix rdfs: . 14 | @prefix skos: . 15 | @prefix time: . 16 | @prefix w3cgeo: . 17 | @prefix xsd: . 18 | 19 | ex:InternationalDOIFundation 20 | a foaf:Organization ; 21 | rdfs:label "International DOI Foundation" ; 22 | foaf:homepage ; 23 | . 24 | ex:PoelenJorritH 25 | a foaf:Person ; 26 | foaf:name "Jorrit H. Poelen" ; 27 | adms:identifier ; 28 | . 29 | ex:PoelenJorritHID 30 | a adms:Identifier ; 31 | skos:notation "https://orcid.org/0000-0003-3138-4118"^^xsd:anyURI ; 32 | adms:schemaAgency "ORCID" ; 33 | . 34 | ex:id 35 | a dcat:Dataset ; 36 | dct:identifier "https://example.org/id"^^xsd:anyURI ; 37 | dct:publisher ; 38 | adms:identifier ; 39 | . 40 | ex:id3 41 | a dcat:Dataset ; 42 | owl:sameAs ; 43 | . 44 | ex:id4 45 | a dcat:Dataset ; 46 | adms:identifier ; 47 | . 48 | ex:iddoi 49 | a adms:Identifier ; 50 | dct:creator ex:InternationalDOIFundation ; 51 | skos:notation "https://doi.org/10.5281/zenodo.1486279"^^xsd:anyURI ; 52 | adms:schemaAgency "International DOI Foundation" ; 53 | . 54 | ex:identifier-types 55 | a owl:Ontology ; 56 | owl:imports ; 57 | . 58 | ex:proxyid 59 | a dcat:Dataset ; 60 | dct:identifier "id" ; 61 | . 62 | ex:si6 63 | a adms:Identifier ; 64 | skos:notation "info:doi/10.1109/5.771073"^^xsd:anyURI ; 65 | . 66 | ex:sid5 67 | a adms:Identifier ; 68 | dct:issued "2001-09-12"^^xsd:date ; 69 | skos:notation "PA 1-060-815"^^ex:type ; 70 | adms:schemaAgency "US Copyright Office" ; 71 | . 72 | -------------------------------------------------------------------------------- /dcat/examples/relation-examples.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: http://example.org/dxwg/relations/examples 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix dcat: . 5 | @prefix dct: . 6 | @prefix ex: . 7 | @prefix foaf: . 8 | @prefix owl: . 9 | @prefix prov: . 10 | @prefix rdf: . 11 | @prefix rdfs: . 12 | @prefix skos: . 13 | @prefix xsd: . 14 | 15 | ex:DS987 16 | rdf:type dcat:Dataset ; 17 | prov:qualifiedAttribution [ 18 | rdf:type prov:Attribution ; 19 | dcat:hadRole ; 20 | prov:agent ; 21 | ] ; 22 | prov:qualifiedGeneration [ 23 | rdf:type prov:Generation ; 24 | prov:activity ; 25 | prov:atTime "2014-05-31T12:00:00"^^xsd:dateTime ; 26 | ] ; 27 | . 28 | ex:Test987 29 | rdf:type dcat:Dataset ; 30 | dcat:qualifiedRelation [ 31 | rdf:type dcat:Relationship ; 32 | dcat:hadRole ; 33 | dcat:target ex:Test123 ; 34 | ] ; 35 | . 36 | ex:examples 37 | rdf:type owl:Ontology ; 38 | dct:created "2018-09-25"^^xsd:date ; 39 | dct:modified "2019-01-11"^^xsd:date ; 40 | dct:creator ; 41 | dct:creator ; 42 | rdfs:comment "RDF graph containing examples of qualified relations"@en ; 43 | rdfs:label "DCAT qualified relations examples"@en ; 44 | rdfs:seeAlso ; 45 | owl:imports ; 46 | . 47 | -------------------------------------------------------------------------------- /dcat/examples/spatial-properties.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: https://dcat.example.org/spatial-properties 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix dcat: . 5 | @prefix dct: . 6 | @prefix ex: . 7 | @prefix geosparql: . 8 | @prefix locn: . 9 | @prefix owl: . 10 | @prefix rdf: . 11 | @prefix rdfs: . 12 | @prefix time: . 13 | @prefix w3cgeo: . 14 | @prefix xsd: . 15 | 16 | ex:AnneFrank_0 17 | a dcat:Dataset ; 18 | dct:spatial [ 19 | a dct:Location ; 20 | locn:geometry "POLYGON (( 4.8842353 52.375108 , 4.884276 52.375153 , 4.8842567 52.375159 , 4.883981 52.375254 , 4.8838502 52.375109 , 4.883819 52.375075 , 4.8841037 52.374979 , 4.884143 52.374965 , 4.8842069 52.375035 , 4.884263 52.375016 , 4.8843200 52.374996 , 4.884255 52.374926 , 4.8843289 52.374901 , 4.884451 52.375034 , 4.8842353 52.375108 ))"^^geosparql:wktLiteral ; 21 | ] ; 22 | . 23 | ex:AnneFrank_1 24 | a dcat:Dataset ; 25 | dct:spatial [ 26 | a dct:Location ; 27 | locn:geometry " POLYGON (( 120749.725 487589.422 , 120752.55 487594.375 , 120751.227 487595.129 , 120732.539 487605.788 , 120723.505 487589.745 , 120721.387 487585.939 , 120740.668 487575.07 , 120743.316 487573.589 , 120747.735 487581.337 , 120751.564 487579.154 , 120755.411 487576.96 , 120750.935 487569.172 , 120755.941 487566.288 , 120764.369 487581.066 , 120749.725 487589.422 ))"^^geosparql:wktLiteral ; 28 | ] ; 29 | . 30 | ex:AnneFrank_2 31 | a dcat:Dataset ; 32 | dct:spatial [ 33 | a dct:Location ; 34 | dcat:centroid "POINT(4.88412 52.37509)"^^geosparql:wktLiteral ; 35 | ] ; 36 | . 37 | ex:AnneFrank_3 38 | a dcat:Dataset ; 39 | dct:spatial [ 40 | a dct:Location ; 41 | w3cgeo:lat 52.37509 ; 42 | w3cgeo:long 4.88412 ; 43 | dcat:centroid "POINT(4.88412 52.37509)"^^geosparql:wktLiteral ; 44 | ] ; 45 | . 46 | ex:Dutch-postal 47 | a dcat:Dataset ; 48 | dct:description "INSPIRE Adressen afkomstig uit de basisregistratie Adressen, beschikbaar voor heel Nederland"@nl ; 49 | dct:description "INSPIRE addresses derived from the Addresses base registry, available for the Netherlands"@en ; 50 | dct:spatial [ 51 | a dct:Location ; 52 | dcat:bbox "POLYGON(( 3.053 47.975 , 7.24 47.975 , 7.24 53.504 , 3.053 53.504 , 3.053 47.975 ))"^^geosparql:wktLiteral ; 53 | ] ; 54 | dct:title "Addresses"@en ; 55 | dct:title "Adressen"@nl ; 56 | dcat:theme ; 57 | . 58 | ex:spatial-properties 59 | a owl:Ontology ; 60 | owl:imports ; 61 | . 62 | -------------------------------------------------------------------------------- /dcat/examples/temporal-properties.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: https://dcat.example.org/temporal-properties 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix dcat: . 5 | @prefix dct: . 6 | @prefix ex: . 7 | @prefix geosparql: . 8 | @prefix locn: . 9 | @prefix owl: . 10 | @prefix rdf: . 11 | @prefix rdfs: . 12 | @prefix time: . 13 | @prefix w3cgeo: . 14 | @prefix xsd: . 15 | 16 | ex:ds127 17 | a dcat:Dataset ; 18 | dct:temporal [ 19 | a dct:PeriodOfTime ; 20 | dcat:startDate "2016-03-04"^^xsd:date ; 21 | ] ; 22 | . 23 | ex:ds257 24 | a dcat:Dataset ; 25 | dct:temporal [ 26 | a dct:PeriodOfTime ; 27 | dcat:endDate "2018-08-05"^^xsd:date ; 28 | dcat:startDate "2016-03-04"^^xsd:date ; 29 | ] ; 30 | . 31 | ex:ds348 32 | a dcat:Dataset ; 33 | dct:temporal [ 34 | a dct:PeriodOfTime ; 35 | a time:ProperInterval ; 36 | time:hasBeginning [ 37 | a time:Instant ; 38 | time:inXSDDate "2016-03-04"^^xsd:date ; 39 | ] ; 40 | time:hasEnd [ 41 | a time:Instant ; 42 | time:inXSDDate "2018-08-05"^^xsd:date ; 43 | ] ; 44 | ] ; 45 | . 46 | ex:ds429 47 | a dcat:Dataset ; 48 | dct:temporal [ 49 | a dct:PeriodOfTime ; 50 | a time:ProperInterval ; 51 | time:hasBeginning [ 52 | a time:Instant ; 53 | time:inXSDgYear "1914"^^xsd:gYear ; 54 | ] ; 55 | time:hasEnd [ 56 | a time:Instant ; 57 | time:inXSDgYear "1939"^^xsd:gYear ; 58 | ] ; 59 | ] ; 60 | . 61 | ex:ds586 62 | a dcat:Dataset ; 63 | dct:temporal [ 64 | a dct:PeriodOfTime ; 65 | a time:ProperInterval ; 66 | time:hasEnd [ 67 | time:inXSDDate "2018-08-05"^^xsd:date ; 68 | ] ; 69 | ] ; 70 | . 71 | ex:ds782 72 | a dcat:Dataset ; 73 | dct:accrualPeriodicity ; 74 | dcat:temporalResolution "PT1H"^^xsd:duration ; 75 | . 76 | ex:ds850 77 | a dcat:Dataset ; 78 | dct:temporal [ 79 | a dct:PeriodOfTime ; 80 | a time:ProperInterval ; 81 | time:hasBeginning [ 82 | a time:Instant ; 83 | time:inTimePosition [ 84 | a time:TimePosition ; 85 | time:hasTRS ; 86 | time:numericPosition 541.0 ; 87 | ] ; 88 | ] ; 89 | time:hasEnd [ 90 | a time:Instant ; 91 | time:inTimePosition [ 92 | a time:TimePosition ; 93 | time:hasTRS ; 94 | time:numericPosition 251.902 ; 95 | ] ; 96 | ] ; 97 | ] ; 98 | . 99 | ex:ds913 100 | a dcat:Dataset ; 101 | dct:accrualPeriodicity ; 102 | dcat:temporalResolution "PT15M"^^xsd:duration ; 103 | . 104 | ex:temporal-properties 105 | a owl:Ontology ; 106 | owl:imports ; 107 | . 108 | -------------------------------------------------------------------------------- /dcat/examples/threddsABC.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: https://example.org/threddsABC 2 | # imports: http://purl.org/dc/terms/ 3 | # imports: http://www.w3.org/2006/time 4 | # imports: http://www.w3.org/ns/dcat 5 | # imports: http://xmlns.com/foaf/0.1/ 6 | # prefix: threddsABC 7 | 8 | @prefix dc: . 9 | @prefix dcat: . 10 | @prefix dct: . 11 | @prefix foaf: . 12 | @prefix owl: . 13 | @prefix rdf: . 14 | @prefix rdfs: . 15 | @prefix threddsABC: . 16 | @prefix time: . 17 | @prefix xsd: . 18 | 19 | 20 | rdf:type owl:Ontology ; 21 | dct:created "2018-09-10T18:00:00.00+10:00" ; 22 | dct:creator ; 23 | rdfs:comment "A sketch of how a THREDDS service and data might be described in a DCAT catalog"@en ; 24 | owl:imports dct: ; 25 | owl:imports ; 26 | owl:imports ; 27 | owl:imports foaf: ; 28 | . 29 | threddsABC:CatalogRecord_D1 30 | rdf:type dcat:CatalogRecord ; 31 | dct:issued "2018-09-10" ; 32 | foaf:primaryTopic threddsABC:Dataset_1 ; 33 | . 34 | threddsABC:CatalogRecord_DDS1 35 | rdf:type dcat:CatalogRecord ; 36 | dct:issued "2018-09-10" ; 37 | foaf:primaryTopic threddsABC:DataService_1 ; 38 | . 39 | threddsABC:CatalogRecord_DS1 40 | rdf:type dcat:CatalogRecord ; 41 | dct:issued "2018-09-11" ; 42 | foaf:primaryTopic threddsABC:DiscoveryService_1 ; 43 | . 44 | threddsABC:Catalog_1 45 | rdf:type dcat:Catalog ; 46 | dc:title "Thredds test catalog 1"@en ; 47 | dcat:dataset threddsABC:Dataset_1 ; 48 | dcat:distribution [ 49 | dcat:accessService threddsABC:DiscoveryService_1 ; 50 | ] ; 51 | dcat:record threddsABC:CatalogRecord_D1 ; 52 | dcat:record threddsABC:CatalogRecord_DDS1 ; 53 | dcat:record threddsABC:CatalogRecord_DS1 ; 54 | dcat:service threddsABC:DataService_1 ; 55 | dcat:service threddsABC:DiscoveryService_1 ; 56 | dcat:themeTaxonomy ; 57 | . 58 | threddsABC:DataService_1 59 | rdf:type dcat:DataService ; 60 | dc:title "TDS 1"@en ; 61 | dct:conformsTo ; 62 | dcat:endpointURL ; 63 | . 64 | threddsABC:Dataset_1 65 | rdf:type dcat:Dataset ; 66 | dc:title "Fake Dataset 1"@en ; 67 | dct:description "This is a completely fake dataset #1"@en ; 68 | dct:temporal [ 69 | rdf:type dct:PeriodOfTime ; 70 | rdf:value "2015-01-01/2018-12-31" ; 71 | ] ; 72 | dcat:distribution [ 73 | rdf:type dcat:Distribution ; 74 | dct:conformsTo ; 75 | dct:license ; 76 | dcat:accessService threddsABC:DataService_1 ; 77 | dcat:byteSize 39871230887 ; 78 | dcat:downloadURL ; 79 | dcat:mediaType ; 80 | ] ; 81 | dcat:keyword "keyword1"@en ; 82 | dcat:keyword "tag3"@en ; 83 | dcat:landingPage ; 84 | dcat:theme ; 85 | . 86 | threddsABC:DiscoveryService_1 87 | rdf:type dcat:DataService ; 88 | dc:title "THREDDS 1"@en ; 89 | dct:conformsTo ; 90 | dcat:endpointURL ; 91 | . 92 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/basic-example.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: https://dcat.example.org/basic-example 2 | 3 | @prefix adms: . 4 | @prefix dcat: . 5 | @prefix dcterms: . 6 | @prefix ex: . 7 | @prefix foaf: . 8 | @prefix geosparql: . 9 | @prefix locn: . 10 | @prefix owl: . 11 | @prefix rdf: . 12 | @prefix rdfs: . 13 | @prefix skos: . 14 | @prefix time: . 15 | @prefix w3cgeo: . 16 | @prefix xsd: . 17 | 18 | ex:basic-example 19 | a owl:Ontology ; 20 | . 21 | ex:catalog 22 | a dcat:Catalog ; 23 | dcterms:language ; 24 | dcterms:publisher ex:transparency-office ; 25 | dcterms:title "Imaginary Catalog"@en ; 26 | rdfs:label "Imaginary Catalog"@en ; 27 | dcat:dataset ex:dataset-001 ; 28 | dcat:dataset ex:dataset-002 ; 29 | dcat:dataset ex:dataset-003 ; 30 | foaf:homepage ; 31 | . 32 | ex:dataset-001 33 | a dcat:Dataset ; 34 | dcterms:accrualPeriodicity ; 35 | dcterms:creator ex:finance-employee-001 ; 36 | dcterms:issued "2011-12-05"^^xsd:date ; 37 | dcterms:language ; 38 | dcterms:modified "2011-12-15"^^xsd:date ; 39 | dcterms:publisher ex:finance-ministry ; 40 | dcterms:spatial ; 41 | dcterms:temporal [ a dcterms:PeriodOfTime ; 42 | dcat:startDate "2011-07-01"^^xsd:date ; 43 | dcat:endDate "2011-09-30"^^xsd:date ; 44 | ]; 45 | dcterms:title "Imaginary dataset"@en ; 46 | dcat:contactPoint ; 47 | dcat:distribution ex:dataset-001-csv ; 48 | dcat:keyword "accountability"@en ; 49 | dcat:keyword "payments"@en ; 50 | dcat:keyword "transparency"@en ; 51 | dcat:spatialResolutionInMeters 30.0 ; 52 | dcat:temporalResolution "P1D"^^xsd:duration ; 53 | . 54 | ex:dataset-001-csv 55 | a dcat:Distribution ; 56 | dcterms:title "CSV distribution of imaginary dataset 001"@en ; 57 | dcat:byteSize "5120"^^xsd:decimal ; 58 | dcat:downloadURL ; 59 | dcat:mediaType ; 60 | . 61 | ex:transparency-office 62 | a foaf:Organization ; 63 | rdfs:label "Transparency Office"@en ; 64 | . 65 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/catalog-record.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@graph" : [ { 3 | "@id" : "ex:catalog", 4 | "@type" : "dcat:Catalog", 5 | "record" : "ex:record-001" 6 | }, { 7 | "@id" : "ex:catalog-record", 8 | "@type" : "owl:Ontology", 9 | "imports" : "http://www.w3.org/ns/dcat" 10 | }, { 11 | "@id" : "ex:record-001", 12 | "@type" : "dcat:CatalogRecord", 13 | "issued" : "2011-12-11", 14 | "primaryTopic" : "ex:dataset-001" 15 | } ], 16 | "@context" : { 17 | "imports" : { 18 | "@id" : "http://www.w3.org/2002/07/owl#imports", 19 | "@type" : "@id" 20 | }, 21 | "primaryTopic" : { 22 | "@id" : "http://xmlns.com/foaf/0.1/primaryTopic", 23 | "@type" : "@id" 24 | }, 25 | "issued" : { 26 | "@id" : "http://purl.org/dc/terms/issued", 27 | "@type" : "http://www.w3.org/2001/XMLSchema#date" 28 | }, 29 | "record" : { 30 | "@id" : "http://www.w3.org/ns/dcat#record", 31 | "@type" : "@id" 32 | }, 33 | "adms" : "https://www.w3.org/ns/adms#", 34 | "owl" : "http://www.w3.org/2002/07/owl#", 35 | "w3cgeo" : "http://www.w3.org/2003/01/geo/wgs84_pos#", 36 | "xsd" : "http://www.w3.org/2001/XMLSchema#", 37 | "skos" : "http://www.w3.org/2004/02/skos/core#", 38 | "rdfs" : "http://www.w3.org/2000/01/rdf-schema#", 39 | "geosparql" : "http://www.opengis.net/ont/geosparql#", 40 | "ex" : "https://dcat.example.org/", 41 | "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", 42 | "dcterms" : "http://purl.org/dc/terms/", 43 | "time" : "http://www.w3.org/2006/time#", 44 | "dcat" : "http://www.w3.org/ns/dcat#", 45 | "locn" : "http://www.w3.org/ns/locn#", 46 | "foaf" : "http://xmlns.com/foaf/0.1/" 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/catalog-record.rdf: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 2011-12-11 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/catalog-record.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: https://dcat.example.org/catalog-record 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix adms: . 5 | @prefix dcat: . 6 | @prefix dcterms: . 7 | @prefix ex: . 8 | @prefix foaf: . 9 | @prefix geosparql: . 10 | @prefix locn: . 11 | @prefix owl: . 12 | @prefix rdf: . 13 | @prefix rdfs: . 14 | @prefix skos: . 15 | @prefix time: . 16 | @prefix w3cgeo: . 17 | @prefix xsd: . 18 | 19 | ex:catalog 20 | a dcat:Catalog ; 21 | dcat:record ex:record-001 ; 22 | . 23 | ex:catalog-record 24 | a owl:Ontology ; 25 | owl:imports ; 26 | . 27 | ex:record-001 28 | a dcat:CatalogRecord ; 29 | dcterms:issued "2011-12-11"^^xsd:date ; 30 | foaf:primaryTopic ex:dataset-001 ; 31 | . 32 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/classifying-thematically.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@graph" : [ { 3 | "@id" : "ex:accountability", 4 | "@type" : "skos:Concept", 5 | "inScheme" : "ex:themes", 6 | "skos:prefLabel" : { 7 | "@language" : "en", 8 | "@value" : "Accountability" 9 | } 10 | }, { 11 | "@id" : "ex:catalog", 12 | "@type" : "dcat:Catalog", 13 | "themeTaxonomy" : "ex:themes" 14 | }, { 15 | "@id" : "ex:classifying-thematically", 16 | "@type" : "owl:Ontology", 17 | "imports" : "http://www.w3.org/ns/dcat" 18 | }, { 19 | "@id" : "ex:dataset-001", 20 | "@type" : "dcat:Dataset", 21 | "theme" : "ex:accountability" 22 | }, { 23 | "@id" : "ex:themes", 24 | "@type" : "skos:ConceptScheme", 25 | "skos:prefLabel" : { 26 | "@language" : "en", 27 | "@value" : "A set of domains to classify documents" 28 | } 29 | } ], 30 | "@context" : { 31 | "prefLabel" : { 32 | "@id" : "http://www.w3.org/2004/02/skos/core#prefLabel", 33 | "@type" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString" 34 | }, 35 | "inScheme" : { 36 | "@id" : "http://www.w3.org/2004/02/skos/core#inScheme", 37 | "@type" : "@id" 38 | }, 39 | "imports" : { 40 | "@id" : "http://www.w3.org/2002/07/owl#imports", 41 | "@type" : "@id" 42 | }, 43 | "themeTaxonomy" : { 44 | "@id" : "http://www.w3.org/ns/dcat#themeTaxonomy", 45 | "@type" : "@id" 46 | }, 47 | "theme" : { 48 | "@id" : "http://www.w3.org/ns/dcat#theme", 49 | "@type" : "@id" 50 | }, 51 | "adms" : "https://www.w3.org/ns/adms#", 52 | "owl" : "http://www.w3.org/2002/07/owl#", 53 | "w3cgeo" : "http://www.w3.org/2003/01/geo/wgs84_pos#", 54 | "xsd" : "http://www.w3.org/2001/XMLSchema#", 55 | "skos" : "http://www.w3.org/2004/02/skos/core#", 56 | "rdfs" : "http://www.w3.org/2000/01/rdf-schema#", 57 | "geosparql" : "http://www.opengis.net/ont/geosparql#", 58 | "ex" : "https://dcat.example.org/", 59 | "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", 60 | "dcterms" : "http://purl.org/dc/terms/", 61 | "time" : "http://www.w3.org/2006/time#", 62 | "dcat" : "http://www.w3.org/ns/dcat#", 63 | "locn" : "http://www.w3.org/ns/locn#", 64 | "foaf" : "http://xmlns.com/foaf/0.1/" 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/classifying-thematically.rdf: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | A set of domains to classify documents 23 | 24 | 25 | 26 | 27 | 28 | 29 | Accountability 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/classifying-thematically.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: https://dcat.example.org/classifying-thematically 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix adms: . 5 | @prefix dcat: . 6 | @prefix dcterms: . 7 | @prefix ex: . 8 | @prefix foaf: . 9 | @prefix geosparql: . 10 | @prefix locn: . 11 | @prefix owl: . 12 | @prefix rdf: . 13 | @prefix rdfs: . 14 | @prefix skos: . 15 | @prefix time: . 16 | @prefix w3cgeo: . 17 | @prefix xsd: . 18 | 19 | ex:accountability 20 | a skos:Concept ; 21 | skos:inScheme ex:themes ; 22 | skos:prefLabel "Accountability"@en ; 23 | . 24 | ex:catalog 25 | a dcat:Catalog ; 26 | dcat:themeTaxonomy ex:themes ; 27 | . 28 | ex:classifying-thematically 29 | a owl:Ontology ; 30 | owl:imports ; 31 | . 32 | ex:dataset-001 33 | a dcat:Dataset ; 34 | dcat:theme ex:accountability ; 35 | . 36 | ex:themes 37 | a skos:ConceptScheme ; 38 | skos:prefLabel "A set of domains to classify documents"@en ; 39 | . 40 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/classifying-types.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@graph" : [ { 3 | "@id" : "ex:classifying-types", 4 | "@type" : "owl:Ontology", 5 | "imports" : "http://www.w3.org/ns/dcat" 6 | }, { 7 | "@id" : "ex:dataset-001-1", 8 | "@type" : "dcat:Dataset", 9 | "type" : "http://purl.org/dc/dcmitype/Dataset" 10 | }, { 11 | "@id" : "ex:dataset-001-2", 12 | "@type" : "dcat:Dataset", 13 | "type" : "http://id.loc.gov/vocabulary/marcgt/dtb" 14 | }, { 15 | "@id" : "ex:dataset-001-3", 16 | "@type" : "dcat:Dataset", 17 | "type" : [ "urn:example:re3data/contentType/database", "urn:example:datacite/resourceType/Dataset", "http://id.loc.gov/vocabulary/marcgt/dtb", "http://purl.org/dc/dcmitype/Dataset" ] 18 | }, { 19 | "@id" : "urn:example:datacite/resourceType/Text", 20 | "dcterms:source" : { 21 | "@language" : "en", 22 | "@value" : "DataCite resource types" 23 | }, 24 | "rdfs:label" : { 25 | "@language" : "en", 26 | "@value" : "Text" 27 | } 28 | }, { 29 | "@id" : "urn:example:re3data/contentType/doc", 30 | "dcterms:source" : { 31 | "@language" : "en", 32 | "@value" : "Re3data content types" 33 | }, 34 | "rdfs:label" : { 35 | "@language" : "en", 36 | "@value" : "Standard office documents" 37 | } 38 | } ], 39 | "@context" : { 40 | "label" : { 41 | "@id" : "http://www.w3.org/2000/01/rdf-schema#label", 42 | "@type" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString" 43 | }, 44 | "source" : { 45 | "@id" : "http://purl.org/dc/terms/source", 46 | "@type" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString" 47 | }, 48 | "type" : { 49 | "@id" : "http://purl.org/dc/terms/type", 50 | "@type" : "@id" 51 | }, 52 | "imports" : { 53 | "@id" : "http://www.w3.org/2002/07/owl#imports", 54 | "@type" : "@id" 55 | }, 56 | "adms" : "https://www.w3.org/ns/adms#", 57 | "owl" : "http://www.w3.org/2002/07/owl#", 58 | "w3cgeo" : "http://www.w3.org/2003/01/geo/wgs84_pos#", 59 | "xsd" : "http://www.w3.org/2001/XMLSchema#", 60 | "skos" : "http://www.w3.org/2004/02/skos/core#", 61 | "rdfs" : "http://www.w3.org/2000/01/rdf-schema#", 62 | "geosparql" : "http://www.opengis.net/ont/geosparql#", 63 | "ex" : "https://dcat.example.org/", 64 | "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", 65 | "dcterms" : "http://purl.org/dc/terms/", 66 | "time" : "http://www.w3.org/2006/time#", 67 | "dcat" : "http://www.w3.org/ns/dcat#", 68 | "locn" : "http://www.w3.org/ns/locn#", 69 | "foaf" : "http://xmlns.com/foaf/0.1/" 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/classifying-types.rdf: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | Text 33 | DataCite resource types 34 | 35 | 36 | Standard office documents 37 | Re3data content types 38 | 39 | 40 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/classifying-types.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: https://dcat.example.org/classifying-types 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix adms: . 5 | @prefix dcat: . 6 | @prefix dcterms: . 7 | @prefix ex: . 8 | @prefix foaf: . 9 | @prefix geosparql: . 10 | @prefix locn: . 11 | @prefix owl: . 12 | @prefix rdf: . 13 | @prefix rdfs: . 14 | @prefix skos: . 15 | @prefix time: . 16 | @prefix w3cgeo: . 17 | @prefix xsd: . 18 | 19 | 20 | dcterms:source "DataCite resource types"@en ; 21 | rdfs:label "Text"@en ; 22 | . 23 | 24 | dcterms:source "Re3data content types"@en ; 25 | rdfs:label "Standard office documents"@en ; 26 | . 27 | ex:classifying-types 28 | a owl:Ontology ; 29 | owl:imports ; 30 | . 31 | ex:dataset-001-1 32 | a dcat:Dataset ; 33 | dcterms:type ; 34 | . 35 | ex:dataset-001-2 36 | a dcat:Dataset ; 37 | dcterms:type ; 38 | . 39 | ex:dataset-001-3 40 | a dcat:Dataset ; 41 | dcterms:type ; 42 | dcterms:type ; 43 | dcterms:type ; 44 | dcterms:type ; 45 | . 46 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/compress-and-package.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id" : "https://data.gov.cz/zdroj/datová-sada/247025684/22", 3 | "@type" : "dcat:Distribution", 4 | "conformsTo" : "https://mvcr1.opendata.cz/czechpoint/2007.json", 5 | "format" : "http://publications.europa.eu/resource/authority/file-type/CSV", 6 | "license" : "https://data.gov.cz/podmínky-užití/volný-přístup/", 7 | "compressFormat" : "http://www.iana.org/assignments/media-types/application/gzip", 8 | "downloadURL" : [ "https://mvcr1.opendata.cz/czechpoint/2007.csv.gz", "https://mvcr1.opendata.cz/czechpoint/data.tar.gz", "https://mvcr1.opendata.cz/czechpoint/data.tar" ], 9 | "mediaType" : "http://www.iana.org/assignments/media-types/text/csv", 10 | "packageFormat" : "http://publications.europa.eu/resource/authority/file-type/TAR", 11 | "@context" : { 12 | "format" : { 13 | "@id" : "http://purl.org/dc/terms/format", 14 | "@type" : "@id" 15 | }, 16 | "mediaType" : { 17 | "@id" : "http://www.w3.org/ns/dcat#mediaType", 18 | "@type" : "@id" 19 | }, 20 | "packageFormat" : { 21 | "@id" : "http://www.w3.org/ns/dcat#packageFormat", 22 | "@type" : "@id" 23 | }, 24 | "downloadURL" : { 25 | "@id" : "http://www.w3.org/ns/dcat#downloadURL", 26 | "@type" : "@id" 27 | }, 28 | "license" : { 29 | "@id" : "http://purl.org/dc/terms/license", 30 | "@type" : "@id" 31 | }, 32 | "compressFormat" : { 33 | "@id" : "http://www.w3.org/ns/dcat#compressFormat", 34 | "@type" : "@id" 35 | }, 36 | "conformsTo" : { 37 | "@id" : "http://purl.org/dc/terms/conformsTo", 38 | "@type" : "@id" 39 | }, 40 | "adms" : "http://www.w3.org/ns/adms#", 41 | "owl" : "http://www.w3.org/2002/07/owl#", 42 | "xsd" : "http://www.w3.org/2001/XMLSchema#", 43 | "proj" : "http://www.w3.org/ns/project#", 44 | "skos" : "http://www.w3.org/2004/02/skos/core#", 45 | "rdfs" : "http://www.w3.org/2000/01/rdf-schema#", 46 | "dap" : "https://data.csiro.au/dataset/", 47 | "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", 48 | "v" : "http://www.w3.org/2006/vcard/ns#", 49 | "dcterms" : "http://purl.org/dc/terms/", 50 | "time" : "http://www.w3.org/2006/time#", 51 | "dcat" : "http://www.w3.org/ns/dcat#", 52 | "prov" : "http://www.w3.org/ns/prov#" 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/compress-and-package.rdf: -------------------------------------------------------------------------------- 1 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/compress-and-package.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: https://data.example.au/compressed/ 2 | # imports: http://www.w3.org/2006/time 3 | # imports: http://www.w3.org/2006/vcard/ns 4 | # imports: http://www.w3.org/ns/adms 5 | # imports: http://www.w3.org/ns/dcat 6 | # imports: http://www.w3.org/ns/project 7 | # prefix: dap 8 | 9 | @prefix adms: . 10 | @prefix dap: . 11 | @prefix dcat: . 12 | @prefix dcterms: . 13 | @prefix owl: . 14 | @prefix proj: . 15 | @prefix prov: . 16 | @prefix rdf: . 17 | @prefix rdfs: . 18 | @prefix skos: . 19 | @prefix time: . 20 | @prefix v: . 21 | @prefix xsd: . 22 | 23 | 24 | a dcat:Distribution ; 25 | dcat:downloadURL ; 26 | dcterms:license ; 27 | dcterms:conformsTo ; 28 | dcterms:format ; 29 | dcat:mediaType ; 30 | dcat:compressFormat . 31 | 32 | # packaging 33 | 34 | a dcat:Distribution ; 35 | dcat:downloadURL ; 36 | dcterms:license ; 37 | dcterms:conformsTo ; 38 | dcterms:format ; 39 | dcat:mediaType ; 40 | dcat:packageFormat . 41 | 42 | # packaging and compression 43 | 44 | a dcat:Distribution ; 45 | dcat:downloadURL ; 46 | dcterms:conformsTo ; 47 | dcterms:license ; 48 | dcterms:format ; 49 | dcat:mediaType ; 50 | dcat:packageFormat ; 51 | dcat:compressFormat . 52 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/dataset-002.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@graph" : [ { 3 | "@id" : "ex:dataset-002", 4 | "@type" : "dcat:Dataset", 5 | "distribution" : "ex:dataset-002-csv", 6 | "landingPage" : "http://example.org/dataset-002.html" 7 | }, { 8 | "@id" : "ex:dataset-002-csv", 9 | "@type" : "dcat:Distribution", 10 | "accessURL" : "http://example.org/dataset-002.html", 11 | "mediaType" : "https://www.iana.org/assignments/media-types/text/csv" 12 | }, { 13 | "@id" : "http://example.org/dataset-002", 14 | "@type" : "owl:Ontology", 15 | "imports" : "http://www.w3.org/ns/dcat" 16 | } ], 17 | "@context" : { 18 | "mediaType" : { 19 | "@id" : "http://www.w3.org/ns/dcat#mediaType", 20 | "@type" : "@id" 21 | }, 22 | "accessURL" : { 23 | "@id" : "http://www.w3.org/ns/dcat#accessURL", 24 | "@type" : "@id" 25 | }, 26 | "imports" : { 27 | "@id" : "http://www.w3.org/2002/07/owl#imports", 28 | "@type" : "@id" 29 | }, 30 | "distribution" : { 31 | "@id" : "http://www.w3.org/ns/dcat#distribution", 32 | "@type" : "@id" 33 | }, 34 | "landingPage" : { 35 | "@id" : "http://www.w3.org/ns/dcat#landingPage", 36 | "@type" : "@id" 37 | }, 38 | "ex" : "http://dcat.example.org/", 39 | "owl" : "http://www.w3.org/2002/07/owl#", 40 | "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", 41 | "xsd" : "http://www.w3.org/2001/XMLSchema#", 42 | "dcterms" : "http://purl.org/dc/terms/", 43 | "rdfs" : "http://www.w3.org/2000/01/rdf-schema#", 44 | "dcat" : "http://www.w3.org/ns/dcat#" 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/dataset-002.rdf: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/dataset-002.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: http://example.org/dataset-002 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix ex: . 5 | @prefix dcat: . 6 | @prefix dcterms: . 7 | @prefix owl: . 8 | @prefix rdf: . 9 | @prefix rdfs: . 10 | @prefix xsd: . 11 | 12 | 13 | rdf:type owl:Ontology ; 14 | owl:imports ; 15 | . 16 | ex:dataset-002 17 | a dcat:Dataset ; 18 | dcat:landingPage ; 19 | dcat:distribution ex:dataset-002-csv ; 20 | . 21 | ex:dataset-002-csv 22 | a dcat:Distribution ; 23 | dcat:accessURL ; 24 | dcat:mediaType ; 25 | . -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/dataset-003.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@graph" : [ { 3 | "@id" : "ex:dataset-003", 4 | "@type" : "dcat:Dataset", 5 | "distribution" : "ex:dataset-003-csv", 6 | "landingPage" : "http://example.org/dataset-003.html" 7 | }, { 8 | "@id" : "ex:dataset-003-csv", 9 | "@type" : "dcat:Distribution", 10 | "downloadURL" : "http://example.org/dataset-003.csv", 11 | "mediaType" : "https://www.iana.org/assignments/media-types/text/csv" 12 | }, { 13 | "@id" : "http://example.org/dataset-003", 14 | "@type" : "owl:Ontology", 15 | "imports" : "http://www.w3.org/ns/dcat" 16 | } ], 17 | "@context" : { 18 | "imports" : { 19 | "@id" : "http://www.w3.org/2002/07/owl#imports", 20 | "@type" : "@id" 21 | }, 22 | "distribution" : { 23 | "@id" : "http://www.w3.org/ns/dcat#distribution", 24 | "@type" : "@id" 25 | }, 26 | "landingPage" : { 27 | "@id" : "http://www.w3.org/ns/dcat#landingPage", 28 | "@type" : "@id" 29 | }, 30 | "mediaType" : { 31 | "@id" : "http://www.w3.org/ns/dcat#mediaType", 32 | "@type" : "@id" 33 | }, 34 | "downloadURL" : { 35 | "@id" : "http://www.w3.org/ns/dcat#downloadURL", 36 | "@type" : "@id" 37 | }, 38 | "ex" : "http://dcat.example.org/", 39 | "owl" : "http://www.w3.org/2002/07/owl#", 40 | "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", 41 | "xsd" : "http://www.w3.org/2001/XMLSchema#", 42 | "dcterms" : "http://purl.org/dc/terms/", 43 | "rdfs" : "http://www.w3.org/2000/01/rdf-schema#", 44 | "dcat" : "http://www.w3.org/ns/dcat#" 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/dataset-003.rdf: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/dataset-003.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: http://example.org/dataset-003 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix ex: . 5 | @prefix dcat: . 6 | @prefix dcterms: . 7 | @prefix owl: . 8 | @prefix rdf: . 9 | @prefix rdfs: . 10 | @prefix xsd: . 11 | 12 | 13 | rdf:type owl:Ontology ; 14 | owl:imports ; 15 | . 16 | ex:dataset-003 17 | a dcat:Dataset ; 18 | dcat:landingPage ; 19 | dcat:distribution ex:dataset-003-csv ; 20 | . 21 | ex:dataset-003-csv 22 | a dcat:Distribution ; 23 | dcat:downloadURL ; 24 | dcat:mediaType ; 25 | . -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/dataset-004-sdo.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@graph" : [ { 3 | "@id" : "http://dcat.example.org/dataset-004/s/", 4 | "@type" : "owl:Ontology", 5 | "conformsTo" : "http://schema.org/", 6 | "sdo:comment" : { 7 | "@language" : "en", 8 | "@value" : "This graph provides a schema.org-conformant representation of a catalog entry together with some related resource descriptions" 9 | }, 10 | "imports" : [ "http://www.w3.org/ns/dcat", "http://schema.org/" ] 11 | }, { 12 | "@id" : "ex:dataset-004", 13 | "@type" : "sdo:Dataset", 14 | "distribution" : [ "ex:dataset-004-png", "ex:dataset-004-csv" ] 15 | }, { 16 | "@id" : "ex:dataset-004-csv", 17 | "@type" : "sdo:DataDownload", 18 | "encodingFormat" : "mime:text/csv", 19 | "url" : "http://dcat.example.org/api/table-005", 20 | "accessService" : "ex:table-service-005" 21 | }, { 22 | "@id" : "ex:dataset-004-png", 23 | "@type" : "sdo:DataDownload", 24 | "encodingFormat" : "mime:image/png", 25 | "url" : "http://dcat.example.org/api/figure-006", 26 | "accessService" : "ex:figure-service-006" 27 | }, { 28 | "@id" : "ex:figure-service-006", 29 | "@type" : "sdo:EntryPoint", 30 | "conformsTo" : "http://dcat.example.org/apidef/figure/v1.0", 31 | "additionalType" : "https://inspire.ec.europa.eu/metadata-codelist/SpatialDataServiceType/view", 32 | "url" : "http://dcat.example.org/api/figure-006" 33 | }, { 34 | "@id" : "ex:table-service-005", 35 | "@type" : "sdo:EntryPoint", 36 | "conformsTo" : "http://dcat.example.org/apidef/table/v2.2", 37 | "additionalType" : "https://inspire.ec.europa.eu/metadata-codelist/SpatialDataServiceType/download", 38 | "url" : "http://dcat.example.org/api/table-005" 39 | } ], 40 | "@context" : { 41 | "url" : { 42 | "@id" : "http://schema.org/url", 43 | "@type" : "@id" 44 | }, 45 | "additionalType" : { 46 | "@id" : "http://schema.org/additionalType", 47 | "@type" : "@id" 48 | }, 49 | "conformsTo" : { 50 | "@id" : "http://purl.org/dc/terms/conformsTo", 51 | "@type" : "@id" 52 | }, 53 | "imports" : { 54 | "@id" : "http://www.w3.org/2002/07/owl#imports", 55 | "@type" : "@id" 56 | }, 57 | "comment" : { 58 | "@id" : "http://schema.org/comment", 59 | "@type" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString" 60 | }, 61 | "encodingFormat" : { 62 | "@id" : "http://schema.org/encodingFormat", 63 | "@type" : "@id" 64 | }, 65 | "accessService" : { 66 | "@id" : "http://www.w3.org/ns/dcat#accessService", 67 | "@type" : "@id" 68 | }, 69 | "distribution" : { 70 | "@id" : "http://schema.org/distribution", 71 | "@type" : "@id" 72 | }, 73 | "dap" : "https://data.csiro.au/dataset/", 74 | "ex" : "http://dcat.example.org/dataset-004/s/", 75 | "owl" : "http://www.w3.org/2002/07/owl#", 76 | "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", 77 | "dctype" : "http://purl.org/dc/dcmitype/", 78 | "mime" : "https://www.iana.org/assignments/media-types/", 79 | "xsd" : "http://www.w3.org/2001/XMLSchema#", 80 | "dcterms" : "http://purl.org/dc/terms/", 81 | "rdfs" : "http://www.w3.org/2000/01/rdf-schema#", 82 | "dcat" : "http://www.w3.org/ns/dcat#", 83 | "sdo" : "http://schema.org/" 84 | } 85 | } 86 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/dataset-004-sdo.rdf: -------------------------------------------------------------------------------- 1 | 13 | 14 | 15 | 16 | This graph provides a schema.org-conformant representation of a catalog entry together with some related resource descriptions 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/dataset-004-sdo.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: http://dcat.example.org/dataset-004/s/ 2 | # imports: http://schema.org/ 3 | # imports: http://www.w3.org/ns/dcat 4 | 5 | @prefix ex: . 6 | @prefix dap: . 7 | @prefix dcat: . 8 | @prefix dcterms: . 9 | @prefix dctype: . 10 | @prefix mime: . 11 | @prefix owl: . 12 | @prefix rdf: . 13 | @prefix rdfs: . 14 | @prefix sdo: . 15 | @prefix xsd: . 16 | 17 | 18 | rdf:type owl:Ontology ; 19 | dcterms:conformsTo sdo: ; 20 | sdo:comment "This graph provides a schema.org-conformant representation of a catalog entry together with some related resource descriptions"@en ; 21 | owl:imports sdo: ; 22 | owl:imports ; 23 | . 24 | ex:dataset-004 25 | a sdo:Dataset ; 26 | sdo:distribution ex:dataset-004-csv ; 27 | sdo:distribution ex:dataset-004-png ; 28 | . 29 | ex:dataset-004-csv 30 | a sdo:DataDownload ; 31 | dcat:accessService ex:table-service-005 ; 32 | sdo:url ; 33 | sdo:encodingFormat ; 34 | . 35 | ex:dataset-004-png 36 | a sdo:DataDownload ; 37 | dcat:accessService ex:figure-service-006 ; 38 | sdo:url ; 39 | sdo:encodingFormat ; 40 | . 41 | ex:figure-service-006 42 | a sdo:EntryPoint ; 43 | dcterms:conformsTo ; 44 | sdo:additionalType ; 45 | sdo:url ; 46 | . 47 | ex:table-service-005 48 | a sdo:EntryPoint ; 49 | dcterms:conformsTo ; 50 | sdo:additionalType ; 51 | sdo:url ; 52 | . 53 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/dataset-004.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@graph" : [ { 3 | "@id" : "http://dcat.example.org/dataset-004", 4 | "@type" : "owl:Ontology", 5 | "imports" : "http://www.w3.org/ns/dcat" 6 | }, { 7 | "@id" : "ex:dataset-004", 8 | "@type" : "dcat:Dataset", 9 | "distribution" : [ "ex:dataset-004-png", "ex:dataset-004-csv" ] 10 | }, { 11 | "@id" : "ex:dataset-004-csv", 12 | "@type" : "dcat:Distribution", 13 | "accessService" : "ex:table-service-005", 14 | "accessURL" : "http://dcat.example.org/api/table-005", 15 | "mediaType" : "https://www.iana.org/assignments/media-types/text/csv" 16 | }, { 17 | "@id" : "ex:dataset-004-png", 18 | "@type" : "dcat:Distribution", 19 | "accessService" : "ex:figure-service-006", 20 | "accessURL" : "http://dcat.example.org/api/figure-006", 21 | "mediaType" : "https://www.iana.org/assignments/media-types/image/png" 22 | }, { 23 | "@id" : "ex:figure-service-006", 24 | "@type" : "dcat:DataService", 25 | "conformsTo" : "http://dcat.example.org/apidef/figure/v1.0", 26 | "type" : "https://inspire.ec.europa.eu/metadata-codelist/SpatialDataServiceType/view", 27 | "endpointDescription" : "http://dcat.example.org/api/figure-006/params", 28 | "endpointURL" : "http://dcat.example.org/api/figure-006", 29 | "servesDataset" : "ex:dataset-004" 30 | }, { 31 | "@id" : "ex:table-service-005", 32 | "@type" : "dcat:DataService", 33 | "conformsTo" : "http://dcat.example.org/apidef/table/v2.2", 34 | "type" : "https://inspire.ec.europa.eu/metadata-codelist/SpatialDataServiceType/download", 35 | "endpointDescription" : "http://dcat.example.org/api/table-005/capability", 36 | "endpointURL" : "http://dcat.example.org/api/table-005", 37 | "servesDataset" : "ex:dataset-004" 38 | } ], 39 | "@context" : { 40 | "distribution" : { 41 | "@id" : "http://www.w3.org/ns/dcat#distribution", 42 | "@type" : "@id" 43 | }, 44 | "mediaType" : { 45 | "@id" : "http://www.w3.org/ns/dcat#mediaType", 46 | "@type" : "@id" 47 | }, 48 | "accessURL" : { 49 | "@id" : "http://www.w3.org/ns/dcat#accessURL", 50 | "@type" : "@id" 51 | }, 52 | "accessService" : { 53 | "@id" : "http://www.w3.org/ns/dcat#accessService", 54 | "@type" : "@id" 55 | }, 56 | "servesDataset" : { 57 | "@id" : "http://www.w3.org/ns/dcat#servesDataset", 58 | "@type" : "@id" 59 | }, 60 | "endpointURL" : { 61 | "@id" : "http://www.w3.org/ns/dcat#endpointURL", 62 | "@type" : "@id" 63 | }, 64 | "endpointDescription" : { 65 | "@id" : "http://www.w3.org/ns/dcat#endpointDescription", 66 | "@type" : "@id" 67 | }, 68 | "type" : { 69 | "@id" : "http://purl.org/dc/terms/type", 70 | "@type" : "@id" 71 | }, 72 | "conformsTo" : { 73 | "@id" : "http://purl.org/dc/terms/conformsTo", 74 | "@type" : "@id" 75 | }, 76 | "imports" : { 77 | "@id" : "http://www.w3.org/2002/07/owl#imports", 78 | "@type" : "@id" 79 | }, 80 | "ex" : "http://dcat.example.org/dataset-004#", 81 | "owl" : "http://www.w3.org/2002/07/owl#", 82 | "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", 83 | "xsd" : "http://www.w3.org/2001/XMLSchema#", 84 | "dcterms" : "http://purl.org/dc/terms/", 85 | "rdfs" : "http://www.w3.org/2000/01/rdf-schema#", 86 | "dcat" : "http://www.w3.org/ns/dcat#" 87 | } 88 | } 89 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/dataset-004.rdf: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/dataset-004.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: http://dcat.xample.org/dataset-004 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix ex: . 5 | @prefix dcat: . 6 | @prefix dcterms: . 7 | @prefix owl: . 8 | @prefix rdf: . 9 | @prefix rdfs: . 10 | @prefix xsd: . 11 | 12 | 13 | rdf:type owl:Ontology ; 14 | owl:imports ; 15 | . 16 | ex:dataset-004 17 | rdf:type dcat:Dataset ; 18 | dcat:distribution ex:dataset-004-csv ; 19 | dcat:distribution ex:dataset-004-png ; 20 | . 21 | ex:dataset-004-csv 22 | rdf:type dcat:Distribution ; 23 | dcat:accessService ex:table-service-005 ; 24 | dcat:accessURL ; 25 | dcat:mediaType ; 26 | . 27 | ex:dataset-004-png 28 | rdf:type dcat:Distribution ; 29 | dcat:accessService ex:figure-service-006 ; 30 | dcat:accessURL ; 31 | dcat:mediaType ; 32 | . 33 | ex:figure-service-006 34 | rdf:type dcat:DataService ; 35 | dcterms:conformsTo ; 36 | dcterms:type ; 37 | dcat:endpointDescription ; 38 | dcat:endpointURL ; 39 | dcat:servesDataset ex:dataset-004 ; 40 | . 41 | ex:table-service-005 42 | rdf:type dcat:DataService ; 43 | dcterms:conformsTo ; 44 | dcterms:type ; 45 | dcat:endpointDescription ; 46 | dcat:endpointURL ; 47 | dcat:servesDataset ex:dataset-004 ; 48 | . 49 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/dryad-globtherm-sdata.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id" : "ex:globtherm", 3 | "creator" : "https://orcid.org/0000-0002-7883-3577", 4 | "dcterms:description" : { 5 | "@language" : "en", 6 | "@value" : "How climate affects species distributions is a longstanding question receiving renewed interest owing to the need to predict the impacts of global warming on biodiversity. Is climate change forcing species to live near their critical thermal limits? Are these limits likely to change through natural selection? These and other important questions can be addressed with models relating geographical distributions of species with climate data, but inferences made with these models are highly contingent on non-climatic factors such as biotic interactions. Improved understanding of climate change effects on species will require extensive analysis of thermal physiological traits, but such data are scarce and scattered. To overcome current limitations, we created the GlobTherm database. The database contains experimentally derived species’ thermal tolerance data currently comprising over 2,000 species of terrestrial, freshwater, intertidal and marine multicellular algae, pl ants, fungi, and animals. The GlobTherm database will be maintained and curated by iDiv with the aim of expanding it, and enable further investigations on the effects of climate on the distribution of life on Earth." 7 | }, 8 | "identifier" : "https://doi.org/10.5061/dryad.1cv08", 9 | "isReferencedBy" : "https://doi.org/10.1038/sdata.2018.22", 10 | "relation" : [ "https://doi.org/10.5061/dryad.1cv08/7", "https://doi.org/10.5061/dryad.1cv08/6" ], 11 | "dcterms:title" : { 12 | "@language" : "en", 13 | "@value" : "Data from: GlobTherm, a global database on thermal tolerances for aquatic and terrestrial organisms" 14 | }, 15 | "@context" : { 16 | "isReferencedBy" : { 17 | "@id" : "http://purl.org/dc/terms/isReferencedBy", 18 | "@type" : "@id" 19 | }, 20 | "relation" : { 21 | "@id" : "http://purl.org/dc/terms/relation", 22 | "@type" : "@id" 23 | }, 24 | "creator" : { 25 | "@id" : "http://purl.org/dc/terms/creator", 26 | "@type" : "@id" 27 | }, 28 | "identifier" : { 29 | "@id" : "http://purl.org/dc/terms/identifier", 30 | "@type" : "http://www.w3.org/2001/XMLSchema#anyURI" 31 | }, 32 | "description" : { 33 | "@id" : "http://purl.org/dc/terms/description", 34 | "@type" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString" 35 | }, 36 | "title" : { 37 | "@id" : "http://purl.org/dc/terms/title", 38 | "@type" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString" 39 | }, 40 | "ex" : "http://dcat.example.org/dryad-globtherm-sdata", 41 | "xsd" : "http://www.w3.org/2001/XMLSchema#", 42 | "dcterms" : "http://purl.org/dc/terms/" 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/dryad-globtherm-sdata.rdf: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | 10 | 11 | https://doi.org/10.5061/dryad.1cv08 13 | How climate affects species distributions is a longstanding question receiving renewed interest owing to the need to predict the impacts of global warming on biodiversity. Is climate change forcing species to live near their critical thermal limits? Are these limits likely to change through natural selection? These and other important questions can be addressed with models relating geographical distributions of species with climate data, but inferences made with these models are highly contingent on non-climatic factors such as biotic interactions. Improved understanding of climate change effects on species will require extensive analysis of thermal physiological traits, but such data are scarce and scattered. To overcome current limitations, we created the GlobTherm database. The database contains experimentally derived species’ thermal tolerance data currently comprising over 2,000 species of terrestrial, freshwater, intertidal and marine multicellular algae, pl ants, fungi, and animals. The GlobTherm database will be maintained and curated by iDiv with the aim of expanding it, and enable further investigations on the effects of climate on the distribution of life on Earth. 14 | Data from: GlobTherm, a global database on thermal tolerances for aquatic and terrestrial organisms 15 | 16 | 17 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/dryad-globtherm-sdata.ttl: -------------------------------------------------------------------------------- 1 | @prefix dcterms: . 2 | @prefix xsd: . 3 | @prefix ex: . 4 | 5 | ex:globtherm 6 | dcterms:title "Data from: GlobTherm, a global database on thermal tolerances for aquatic and terrestrial organisms"@en ; 7 | dcterms:description "How climate affects species distributions is a longstanding question receiving renewed interest owing to the need to predict the impacts of global warming on biodiversity. Is climate change forcing species to live near their critical thermal limits? Are these limits likely to change through natural selection? These and other important questions can be addressed with models relating geographical distributions of species with climate data, but inferences made with these models are highly contingent on non-climatic factors such as biotic interactions. Improved understanding of climate change effects on species will require extensive analysis of thermal physiological traits, but such data are scarce and scattered. To overcome current limitations, we created the GlobTherm database. The database contains experimentally derived species’ thermal tolerance data currently comprising over 2,000 species of terrestrial, freshwater, intertidal and marine multicellular algae, pl ants, fungi, and animals. The GlobTherm database will be maintained and curated by iDiv with the aim of expanding it, and enable further investigations on the effects of climate on the distribution of life on Earth."@en ; 8 | dcterms:identifier "https://doi.org/10.5061/dryad.1cv08"^^xsd:anyURI ; 9 | dcterms:creator ; 10 | dcterms:relation ; 11 | dcterms:relation ; 12 | dcterms:isReferencedBy 13 | . 14 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/ga-wms.rdf: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | GA WMS 15 | Example of DCAT record of a dataset published by Geoscience Australia 16 | 17 | 2018-09-12 18 | 19 | 20 | 21 | LAND Topography Models 22 | ECOLOGY Landscape 23 | 24 | 25 | Digital Elevation Model (DEM) of Australia derived from STRM with 1 Second Grid - Hydrologically Enforced 26 | 27 | DEM 28 | This Service represents the National Digital Elevation Model (DEM) 1 Second Hydrologically Enforced product, derived from the National DEM SRTM 1 Second and National Watercourses, lakes and Reservoirs. 29 | 30 | 31 | <gml:Envelope srsName="http://www.opengis.net/def/crs/OGC/1.3/CRS84"><gml:lowerCorner>112.999861 -44.000139</gml:lowerCorner><gml:upperCorner>153.999861 -10.000139</gml:upperCorner></gml:Envelope> 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/ga-wms.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: https://dcat.example.org/ga-wms 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix dcat: . 5 | @prefix dcterms: . 6 | @prefix dctype: . 7 | @prefix ga-wms: . 8 | @prefix gsp: . 9 | @prefix locn: . 10 | @prefix owl: . 11 | @prefix rdf: . 12 | @prefix rdfs: . 13 | @prefix xsd: . 14 | 15 | 16 | rdf:type owl:Ontology ; 17 | dcterms:created "2018-09-12" ; 18 | dcterms:creator ; 19 | rdfs:comment "Example of DCAT record of a dataset published by Geoscience Australia"@en ; 20 | rdfs:label "GA WMS"@en ; 21 | owl:imports ; 22 | . 23 | ga-wms:DEM_SRTM_1Second_Hydro_Enforced 24 | rdf:type dcat:DataService ; 25 | dcterms:conformsTo ; 26 | dcterms:description "This Service represents the National Digital Elevation Model (DEM) 1 Second Hydrologically Enforced product, derived from the National DEM SRTM 1 Second and National Watercourses, lakes and Reservoirs."@en ; 27 | dcterms:spatial [ 28 | rdf:type dcterms:Location ; 29 | locn:geometry "112.999861 -44.000139153.999861 -10.000139"^^gsp:gmlLiteral ; 30 | ] ; 31 | dcterms:title "Digital Elevation Model (DEM) of Australia derived from STRM with 1 Second Grid - Hydrologically Enforced"@en ; 32 | dcterms:type dctype:Service ; 33 | dcterms:type ; 34 | dcat:endpointDescription ; 35 | dcat:endpointURL ; 36 | dcat:keyword "DEM" ; 37 | dcat:keyword "ECOLOGY Landscape"@en ; 38 | dcat:keyword "LAND Topography Models"@en ; 39 | . 40 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/genoa-busstop.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: https://dcat.example.org/genoa-busstop 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix ex: . 5 | @prefix adms: . 6 | @prefix dcat: . 7 | @prefix dcterms: . 8 | @prefix dqv: . 9 | @prefix foaf: . 10 | @prefix geosparql: . 11 | @prefix ldqd: . 12 | @prefix locn: . 13 | @prefix oa: . 14 | @prefix owl: . 15 | @prefix prov: . 16 | @prefix rdf: . 17 | @prefix rdfs: . 18 | @prefix skos: . 19 | @prefix time: . 20 | @prefix w3cgeo: . 21 | @prefix xsd: . 22 | 23 | ex:completenessWRTExpectedNumberOfEntities 24 | a dqv:Metric ; 25 | skos:definition "The degree of completeness as ratio between the actual number of entities included in the dataset and the declared expected number of entities."@en ; 26 | dqv:expectedDataType xsd:decimal ; 27 | dqv:inDimension ldqd:completeness ; 28 | . 29 | ex:genoa-busstop 30 | a owl:Ontology ; 31 | owl:imports ; 32 | . 33 | ex:genoaBusStopsDataset 34 | a dcat:Dataset ; 35 | dqv:hasQualityAnnotation ex:genoaBusStopsDatasetCompletenessNote ; 36 | dqv:hasQualityMeasurement ex:genoaBusStopsDatasetCompletenessMeasurement ; 37 | . 38 | ex:genoaBusStopsDatasetCompletenessMeasurement 39 | a dqv:QualityMeasurement ; 40 | dqv:computedOn ex:genoaBusStopsDataset ; 41 | dqv:isMeasurementOf ex:completenessWRTExpectedNumberOfEntities ; 42 | dqv:value 0.6833333 ; 43 | prov:generatedAtTime "2018-05-27T02:52:02Z"^^xsd:dateTime ; 44 | prov:wasAttributedTo ex:myQualityChecker ; 45 | prov:wasGeneratedBy ex:myQualityChecking ; 46 | . 47 | ex:genoaBusStopsDatasetCompletenessNote 48 | a dqv:UserQualityFeedback ; 49 | dqv:inDimension ldqd:completeness ; 50 | oa:hasBody ex:textBody ; 51 | oa:hasTarget ex:genoaBusStopsDataset ; 52 | oa:motivatedBy dqv:qualityAssessment ; 53 | prov:generatedAtTime "2018-05-27T02:52:02Z"^^xsd:dateTime ; 54 | prov:wasAttributedTo ex:consumer1 ; 55 | . 56 | ex:myQualityChecker 57 | a prov:SoftwareAgent ; 58 | rdfs:label "A quality assessment service"@en ; 59 | . 60 | ex:myQualityChecking 61 | a prov:Activity ; 62 | rdfs:label "The checking of genoaBusStopsDataset's quality"@en ; 63 | prov:endedAtTime "2018-05-27T02:52:02Z"^^xsd:dateTime ; 64 | prov:generated ex:genoaBusStopsDatasetCompletenessMeasurement ; 65 | prov:startedAtTime "2018-05-27T00:52:02Z"^^xsd:dateTime ; 66 | prov:used ex:genoaBusStopsDataset ; 67 | prov:wasAssociatedWith ex:myQualityChecker ; 68 | . 69 | ex:textBody 70 | a oa:TextualBody ; 71 | dcterms:format "text/plain" ; 72 | dcterms:language "en" ; 73 | rdf:value "Incomplete dataset: it contains only 20500 out of 30000 existing bus stops" ; 74 | . 75 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/identifier-types.rdf: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | 20 | id 21 | 22 | 23 | info:doi/10.1109/5.771073 25 | 26 | 27 | US Copyright Office 28 | PA 1-060-815 30 | 2001-09-12 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | International DOI Foundation 40 | https://doi.org/10.5281/zenodo.1486279 42 | 43 | 44 | 45 | International DOI Foundation 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | ORCID 55 | https://orcid.org/0000-0003-3138-4118 57 | 58 | 59 | Jorrit H. Poelen 60 | 61 | 62 | 63 | 64 | https://dcat.example.org/id 66 | 67 | 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/identifier-types.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: https://dcat.example.org/identifier-types 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix adms: . 5 | @prefix dcat: . 6 | @prefix dcterms: . 7 | @prefix ex: . 8 | @prefix foaf: . 9 | @prefix geosparql: . 10 | @prefix locn: . 11 | @prefix owl: . 12 | @prefix rdf: . 13 | @prefix rdfs: . 14 | @prefix skos: . 15 | @prefix time: . 16 | @prefix w3cgeo: . 17 | @prefix xsd: . 18 | 19 | ex:InternationalDOIFundation 20 | a foaf:Organization ; 21 | rdfs:label "International DOI Foundation" ; 22 | foaf:homepage ; 23 | . 24 | ex:PoelenJorritH 25 | a foaf:Person ; 26 | foaf:name "Jorrit H. Poelen" ; 27 | adms:identifier ; 28 | . 29 | ex:PoelenJorritHID 30 | a adms:Identifier ; 31 | skos:notation "https://orcid.org/0000-0003-3138-4118"^^xsd:anyURI ; 32 | adms:schemaAgency "ORCID" ; 33 | . 34 | 35 | a dcat:Dataset ; 36 | dcterms:identifier "https://dcat.example.org/id"^^xsd:anyURI . 37 | 38 | ex:id 39 | a dcat:Dataset ; 40 | dcterms:publisher ; 41 | adms:identifier ; 42 | . 43 | ex:id3 44 | a dcat:Dataset ; 45 | owl:sameAs ; 46 | . 47 | ex:id4 48 | a dcat:Dataset ; 49 | adms:identifier ; 50 | . 51 | ex:iddoi 52 | a adms:Identifier ; 53 | dcterms:creator ex:InternationalDOIFundation ; 54 | skos:notation "https://doi.org/10.5281/zenodo.1486279"^^xsd:anyURI ; 55 | adms:schemaAgency "International DOI Foundation" ; 56 | . 57 | ex:identifier-types 58 | a owl:Ontology ; 59 | owl:imports ; 60 | . 61 | 62 | a dcat:Dataset ; 63 | dcterms:identifier "id" ; 64 | . 65 | ex:sid6 66 | a adms:Identifier ; 67 | skos:notation "info:doi/10.1109/5.771073"^^xsd:anyURI ; 68 | . 69 | ex:sid5 70 | a adms:Identifier ; 71 | dcterms:issued "2001-09-12"^^xsd:date ; 72 | skos:notation "PA 1-060-815"^^ex:type ; 73 | adms:schemaAgency "US Copyright Office" ; 74 | . 75 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/relation-examples.rdf: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | 15 | DCAT qualified relations examples 16 | RDF graph containing examples of qualified relations 17 | 18 | 19 | 2019-01-11 21 | 2018-09-25 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 2014-05-31T12:00:00 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/relation-examples.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: http://dcat.example.org/dxwg/relations/examples 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix dcat: . 5 | @prefix dcterms: . 6 | @prefix ex: . 7 | @prefix foaf: . 8 | @prefix owl: . 9 | @prefix prov: . 10 | @prefix rdf: . 11 | @prefix rdfs: . 12 | @prefix skos: . 13 | @prefix xsd: . 14 | 15 | ex:DS987 16 | rdf:type dcat:Dataset ; 17 | prov:qualifiedAttribution [ 18 | rdf:type prov:Attribution ; 19 | dcat:hadRole ; 20 | prov:agent ; 21 | ] ; 22 | prov:qualifiedGeneration [ 23 | rdf:type prov:Generation ; 24 | prov:activity ; 25 | prov:atTime "2014-05-31T12:00:00"^^xsd:dateTime ; 26 | ] ; 27 | . 28 | ex:Test987 29 | rdf:type dcat:Dataset ; 30 | dcat:qualifiedRelation [ 31 | rdf:type dcat:Relationship ; 32 | dcat:hadRole ; 33 | dcat:target ex:Test123 ; 34 | ] ; 35 | . 36 | ex:examples 37 | rdf:type owl:Ontology ; 38 | dcterms:created "2018-09-25"^^xsd:date ; 39 | dcterms:modified "2019-01-11"^^xsd:date ; 40 | dcterms:creator ; 41 | dcterms:creator ; 42 | rdfs:comment "RDF graph containing examples of qualified relations"@en ; 43 | rdfs:label "DCAT qualified relations examples"@en ; 44 | rdfs:seeAlso ; 45 | owl:imports ; 46 | . 47 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/series-membership.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@graph": [ 3 | { 4 | "@id": "http://dcat.example.org/budget", 5 | "@type": "http://www.w3.org/ns/dcat#DatasetSeries", 6 | "http://purl.org/dc/terms/title": { 7 | "@language": "en", 8 | "@value": "Budget data" 9 | } 10 | }, 11 | { 12 | "@id": "http://dcat.example.org/EUCatalogue", 13 | "@type": "http://www.w3.org/ns/dcat#Catalog", 14 | "http://purl.org/dc/terms/title": { 15 | "@language": "en", 16 | "@value": "European Data Catalogue" 17 | }, 18 | "http://www.w3.org/ns/dcat#dataset": [ 19 | { 20 | "@id": "http://dcat.example.org/budget" 21 | }, 22 | { 23 | "@id": "http://dcat.example.org/employment" 24 | }, 25 | { 26 | "@id": "http://dcat.example.org/finance" 27 | } 28 | ] 29 | }, 30 | { 31 | "@id": "http://dcat.example.org/budget-2018", 32 | "@type": "http://www.w3.org/ns/dcat#Dataset", 33 | "http://purl.org/dc/terms/title": { 34 | "@language": "en", 35 | "@value": "Budget data for year 2018" 36 | }, 37 | "http://www.w3.org/ns/dcat#inSeries": { 38 | "@id": "http://dcat.example.org/budget" 39 | } 40 | }, 41 | { 42 | "@id": "http://dcat.example.org/budget-2020", 43 | "@type": "http://www.w3.org/ns/dcat#Dataset", 44 | "http://purl.org/dc/terms/title": { 45 | "@language": "en", 46 | "@value": "Budget data for year 2020" 47 | }, 48 | "http://www.w3.org/ns/dcat#inSeries": { 49 | "@id": "http://dcat.example.org/budget" 50 | } 51 | }, 52 | { 53 | "@id": "http://dcat.example.org/budget-2019", 54 | "@type": "http://www.w3.org/ns/dcat#Dataset", 55 | "http://purl.org/dc/terms/title": { 56 | "@language": "en", 57 | "@value": "Budget data for year 2019" 58 | }, 59 | "http://www.w3.org/ns/dcat#inSeries": { 60 | "@id": "http://dcat.example.org/budget" 61 | } 62 | } 63 | ] 64 | } -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/series-membership.rdf: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | European Data Catalogue 10 | 11 | 12 | 13 | 14 | 15 | 16 | Budget data for year 2018 17 | 18 | 19 | 20 | 21 | Budget data 22 | 23 | 24 | 25 | Budget data for year 2019 26 | 27 | 28 | 29 | 30 | Budget data for year 2020 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/series-membership.ttl: -------------------------------------------------------------------------------- 1 | @prefix ex: . 2 | @prefix dcat: . 3 | @prefix dcterms: . 4 | @prefix xsd: . 5 | 6 | 7 | ex:EUCatalogue a dcat:Catalog ; 8 | dcterms:title "European Data Catalogue"@en ; 9 | dcat:dataset ex:budget , ex:employment , ex:finance ; 10 | . 11 | 12 | ex:budget a dcat:DatasetSeries ; 13 | dcterms:title "Budget data"@en ; 14 | . 15 | 16 | ex:budget-2018 a dcat:Dataset ; 17 | dcterms:title "Budget data for year 2018"@en ; 18 | dcat:inSeries ex:budget ; 19 | . 20 | 21 | ex:budget-2019 a dcat:Dataset ; 22 | dcterms:title "Budget data for year 2019"@en ; 23 | dcat:inSeries ex:budget ; 24 | . 25 | 26 | ex:budget-2020 a dcat:Dataset ; 27 | dcterms:title "Budget data for year 2020"@en ; 28 | dcat:inSeries ex:budget ; 29 | . -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/series-releases.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@graph" : [ { 3 | "@id" : "ex:budget", 4 | "@type" : "dcat:DatasetSeries", 5 | "dcterms:title" : { 6 | "@language" : "en", 7 | "@value" : "Budget data" 8 | }, 9 | "first" : "ex:budget-2018", 10 | "last" : "ex:budget-2020" 11 | }, { 12 | "@id" : "ex:budget-2018", 13 | "@type" : "dcat:Dataset", 14 | "issued" : "2019-01-01", 15 | "dcterms:title" : { 16 | "@language" : "en", 17 | "@value" : "Budget data for year 2018" 18 | }, 19 | "inSeries" : "ex:budget", 20 | "next" : "ex:budget-2019" 21 | }, { 22 | "@id" : "ex:budget-2019", 23 | "@type" : "dcat:Dataset", 24 | "issued" : "2020-01-01", 25 | "dcterms:title" : { 26 | "@language" : "en", 27 | "@value" : "Budget data for year 2019" 28 | }, 29 | "inSeries" : "ex:budget", 30 | "next" : "ex:budget-2020", 31 | "prev" : "ex:budget-2018" 32 | }, { 33 | "@id" : "ex:budget-2020", 34 | "@type" : "dcat:Dataset", 35 | "issued" : "2021-01-01", 36 | "dcterms:title" : { 37 | "@language" : "en", 38 | "@value" : "Budget data for year 2020" 39 | }, 40 | "inSeries" : "ex:budget", 41 | "prev" : "ex:budget-2019" 42 | } ], 43 | "@context" : { 44 | "last" : { 45 | "@id" : "http://www.w3.org/ns/dcat#last", 46 | "@type" : "@id" 47 | }, 48 | "first" : { 49 | "@id" : "http://www.w3.org/ns/dcat#first", 50 | "@type" : "@id" 51 | }, 52 | "title" : { 53 | "@id" : "http://purl.org/dc/terms/title", 54 | "@type" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString" 55 | }, 56 | "next" : { 57 | "@id" : "http://www.w3.org/ns/dcat#next", 58 | "@type" : "@id" 59 | }, 60 | "prev" : { 61 | "@id" : "http://www.w3.org/ns/dcat#prev", 62 | "@type" : "@id" 63 | }, 64 | "issued" : { 65 | "@id" : "http://purl.org/dc/terms/issued", 66 | "@type" : "http://www.w3.org/2001/XMLSchema#date" 67 | }, 68 | "inSeries" : { 69 | "@id" : "http://www.w3.org/ns/dcat#inSeries", 70 | "@type" : "@id" 71 | }, 72 | "ex" : "http://dcat.example.org/", 73 | "xsd" : "http://www.w3.org/2001/XMLSchema#", 74 | "dcterms" : "http://purl.org/dc/terms/", 75 | "dcat" : "http://www.w3.org/ns/dcat#" 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/series-releases.rdf: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 2021-01-01 13 | 14 | 15 | 16 | 17 | 18 | 19 | 2019-01-01 21 | 22 | Budget data for year 2018 23 | 24 | 25 | Budget data 26 | 27 | 28 | Budget data for year 2020 29 | 30 | 31 | 32 | 2020-01-01 34 | 35 | Budget data for year 2019 36 | 37 | 38 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/series-releases.ttl: -------------------------------------------------------------------------------- 1 | @prefix ex: . 2 | @prefix dcat: . 3 | @prefix dcterms: . 4 | @prefix xsd: . 5 | 6 | ex:budget a dcat:DatasetSeries ; 7 | dcterms:title "Budget data"@en ; 8 | dcat:first ex:budget-2018 ; 9 | dcat:last ex:budget-2020 ; 10 | . 11 | 12 | ex:budget-2018 a dcat:Dataset ; 13 | dcterms:title "Budget data for year 2018"@en ; 14 | dcat:inSeries ex:budget ; 15 | dcterms:issued "2019-01-01"^^xsd:date ; 16 | dcat:next ex:budget-2019 ; 17 | . 18 | 19 | ex:budget-2019 a dcat:Dataset ; 20 | dcterms:title "Budget data for year 2019"@en ; 21 | dcat:inSeries ex:budget ; 22 | dcterms:issued "2020-01-01"^^xsd:date ; 23 | dcat:prev ex:budget-2018 ; 24 | dcat:next ex:budget-2020 ; 25 | . 26 | 27 | ex:budget-2020 a dcat:Dataset ; 28 | dcterms:title "Budget data for year 2020"@en ; 29 | dcat:inSeries ex:budget ; 30 | dcterms:issued "2021-01-01"^^xsd:date ; 31 | dcat:prev ex:budget-2019 ; 32 | . -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/series-versions.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: http://dcat.example.org/ 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix ex: . 5 | @prefix dc: . 6 | @prefix dcat: . 7 | @prefix dcterms: . 8 | @prefix dctype: . 9 | @prefix foaf: . 10 | @prefix gsp: . 11 | @prefix locn: . 12 | @prefix owl: . 13 | @prefix rdf: . 14 | @prefix rdfs: . 15 | @prefix schema: . 16 | @prefix skos: . 17 | @prefix vann: . 18 | @prefix vcard: . 19 | @prefix voaf: . 20 | @prefix xsd: . 21 | 22 | ex:budget a dcat:DatasetSeries ; 23 | dcterms:title "Budget data"@en ; 24 | dcat:first ex:budget-2018 ; 25 | dcat:last ex:budget-2020 ; 26 | . 27 | 28 | ex:budget-2018 a dcat:Dataset ; 29 | dcterms:title "Budget data for year 2018"@en ; 30 | dcat:inSeries ex:budget ; 31 | dcterms:issued "2019-01-01"^^xsd:date ; 32 | dcat:next ex:budget-2019 ; 33 | . 34 | 35 | ex:budget-2019 a dcat:Dataset ; 36 | dcterms:title "Budget data for year 2019"@en ; 37 | dcat:inSeries ex:budget ; 38 | dcat:hasVersion ex:budget-2019-rev0 , ex:budget-2019-rev1 ; 39 | dcat:hasCurrentVersion ex:budget-2019-rev1 ; 40 | dcterms:issued "2020-01-01"^^xsd:date ; 41 | dcat:prev ex:budget-2018 ; 42 | dcat:next ex:budget-2020 ; 43 | . 44 | 45 | ex:budget-2019-rev0 a dcat:Dataset ; 46 | dcterms:title "Budget data for year 2019"@en ; 47 | dcat:version "rev0" ; 48 | dcat:isVersionOf ex:budget-2019 ; 49 | dcterms:issued "2020-01-01"^^xsd:date ; 50 | . 51 | 52 | ex:budget-2019-rev1 a dcat:Dataset ; 53 | dcterms:title "Budget data for year 2019"@en ; 54 | dcat:version "rev1" ; 55 | dcat:isVersionOf ex:budget-2019 ; 56 | dcat:previousVersion ex:budget-2019-rev0 ; 57 | dcterms:issued "2020-05-10"^^xsd:date ; 58 | . 59 | 60 | ex:budget-2020 a dcat:Dataset ; 61 | dcterms:title "Budget data for year 2020"@en ; 62 | dcat:inSeries ex:budget ; 63 | dcterms:issued "2021-01-01"^^xsd:date ; 64 | dcat:prev ex:budget-2019 ; 65 | . -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/spatial-properties.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: https://dcat.example.org/spatial-properties 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix dcat: . 5 | @prefix dcterms: . 6 | @prefix ex: . 7 | @prefix geosparql: . 8 | @prefix locn: . 9 | @prefix owl: . 10 | @prefix rdf: . 11 | @prefix rdfs: . 12 | @prefix time: . 13 | @prefix w3cgeo: . 14 | @prefix xsd: . 15 | 16 | ex:AnneFrank_0 17 | a dcat:Dataset ; 18 | dcterms:spatial [ 19 | a dcterms:Location ; 20 | locn:geometry "POLYGON (( 4.8842353 52.375108 , 4.884276 52.375153 , 4.8842567 52.375159 , 4.883981 52.375254 , 4.8838502 52.375109 , 4.883819 52.375075 , 4.8841037 52.374979 , 4.884143 52.374965 , 4.8842069 52.375035 , 4.884263 52.375016 , 4.8843200 52.374996 , 4.884255 52.374926 , 4.8843289 52.374901 , 4.884451 52.375034 , 4.8842353 52.375108 ))"^^geosparql:wktLiteral ; 21 | ] ; 22 | . 23 | ex:AnneFrank_1 24 | a dcat:Dataset ; 25 | dcterms:spatial [ 26 | a dcterms:Location ; 27 | locn:geometry " POLYGON (( 120749.725 487589.422 , 120752.55 487594.375 , 120751.227 487595.129 , 120732.539 487605.788 , 120723.505 487589.745 , 120721.387 487585.939 , 120740.668 487575.07 , 120743.316 487573.589 , 120747.735 487581.337 , 120751.564 487579.154 , 120755.411 487576.96 , 120750.935 487569.172 , 120755.941 487566.288 , 120764.369 487581.066 , 120749.725 487589.422 ))"^^geosparql:wktLiteral ; 28 | ] ; 29 | . 30 | ex:AnneFrank_2 31 | a dcat:Dataset ; 32 | dcterms:spatial [ 33 | a dcterms:Location ; 34 | dcat:centroid "POINT(4.88412 52.37509)"^^geosparql:wktLiteral ; 35 | ] ; 36 | . 37 | ex:AnneFrank_3 38 | a dcat:Dataset ; 39 | dcterms:spatial [ 40 | a dcterms:Location ; 41 | w3cgeo:lat 52.37509 ; 42 | w3cgeo:long 4.88412 ; 43 | dcat:centroid "POINT(4.88412 52.37509)"^^geosparql:wktLiteral ; 44 | ] ; 45 | . 46 | ex:Dutch-postal 47 | a dcat:Dataset ; 48 | dcterms:description "INSPIRE Adressen afkomstig uit de basisregistratie Adressen, beschikbaar voor heel Nederland"@nl ; 49 | dcterms:description "INSPIRE addresses derived from the Addresses base registry, available for the Netherlands"@en ; 50 | dcterms:spatial [ 51 | a dcterms:Location ; 52 | dcat:bbox "POLYGON(( 3.053 47.975 , 7.24 47.975 , 7.24 53.504 , 3.053 53.504 , 3.053 47.975 ))"^^geosparql:wktLiteral ; 53 | ] ; 54 | dcterms:title "Addresses"@en ; 55 | dcterms:title "Adressen"@nl ; 56 | dcat:theme ; 57 | . 58 | ex:spatial-properties 59 | a owl:Ontology ; 60 | owl:imports ; 61 | . 62 | -------------------------------------------------------------------------------- /dcat/examples/vocab-dcat-3/temporal-properties.ttl: -------------------------------------------------------------------------------- 1 | # baseURI: https://dcat.example.org/temporal-properties 2 | # imports: http://www.w3.org/ns/dcat 3 | 4 | @prefix dcat: . 5 | @prefix dcterms: . 6 | @prefix ex: . 7 | @prefix geosparql: . 8 | @prefix locn: . 9 | @prefix owl: . 10 | @prefix rdf: . 11 | @prefix rdfs: . 12 | @prefix time: . 13 | @prefix w3cgeo: . 14 | @prefix xsd: . 15 | 16 | ex:ds127 17 | a dcat:Dataset ; 18 | dcterms:temporal [ 19 | a dcterms:PeriodOfTime ; 20 | dcat:startDate "2016-03-04"^^xsd:date ; 21 | ] ; 22 | . 23 | ex:ds257 24 | a dcat:Dataset ; 25 | dcterms:temporal [ 26 | a dcterms:PeriodOfTime ; 27 | dcat:endDate "2018-08-05"^^xsd:date ; 28 | dcat:startDate "2016-03-04"^^xsd:date ; 29 | ] ; 30 | . 31 | ex:ds348 32 | a dcat:Dataset ; 33 | dcterms:temporal [ 34 | a dcterms:PeriodOfTime ; 35 | a time:ProperInterval ; 36 | time:hasBeginning [ 37 | a time:Instant ; 38 | time:inXSDDate "2016-03-04"^^xsd:date ; 39 | ] ; 40 | time:hasEnd [ 41 | a time:Instant ; 42 | time:inXSDDate "2018-08-05"^^xsd:date ; 43 | ] ; 44 | ] ; 45 | . 46 | ex:ds429 47 | a dcat:Dataset ; 48 | dcterms:temporal [ 49 | a dcterms:PeriodOfTime ; 50 | a time:ProperInterval ; 51 | time:hasBeginning [ 52 | a time:Instant ; 53 | time:inXSDgYear "1914"^^xsd:gYear ; 54 | ] ; 55 | time:hasEnd [ 56 | a time:Instant ; 57 | time:inXSDgYear "1939"^^xsd:gYear ; 58 | ] ; 59 | ] ; 60 | . 61 | ex:ds586 62 | a dcat:Dataset ; 63 | dcterms:temporal [ 64 | a dcterms:PeriodOfTime ; 65 | a time:ProperInterval ; 66 | time:hasEnd [ 67 | time:inXSDDate "2018-08-05"^^xsd:date ; 68 | ] ; 69 | ] ; 70 | . 71 | ex:ds782 72 | a dcat:Dataset ; 73 | dcterms:accrualPeriodicity ; 74 | dcat:temporalResolution "PT1H"^^xsd:duration ; 75 | . 76 | ex:ds850 77 | a dcat:Dataset ; 78 | dcterms:temporal [ 79 | a dcterms:PeriodOfTime ; 80 | a time:ProperInterval ; 81 | time:hasBeginning [ 82 | a time:Instant ; 83 | time:inTimePosition [ 84 | a time:TimePosition ; 85 | time:hasTRS ; 86 | time:numericPosition 541.0 ; 87 | ] ; 88 | ] ; 89 | time:hasEnd [ 90 | a time:Instant ; 91 | time:inTimePosition [ 92 | a time:TimePosition ; 93 | time:hasTRS ; 94 | time:numericPosition 251.902 ; 95 | ] ; 96 | ] ; 97 | ] ; 98 | . 99 | ex:ds913 100 | a dcat:Dataset ; 101 | dcterms:accrualPeriodicity ; 102 | dcat:temporalResolution "PT15M"^^xsd:duration ; 103 | . 104 | ex:temporal-properties 105 | a owl:Ontology ; 106 | owl:imports ; 107 | . 108 | -------------------------------------------------------------------------------- /dcat/images/Asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/images/Asset.png -------------------------------------------------------------------------------- /dcat/images/Backbone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/images/Backbone.png -------------------------------------------------------------------------------- /dcat/images/Catalog-membership-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/images/Catalog-membership-options.png -------------------------------------------------------------------------------- /dcat/images/Catalog-membership-resolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/images/Catalog-membership-resolution.png -------------------------------------------------------------------------------- /dcat/images/DCAT Simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/images/DCAT Simple.png -------------------------------------------------------------------------------- /dcat/images/DCAT-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/images/DCAT-summary.png -------------------------------------------------------------------------------- /dcat/images/DCATPropertyExtensionToDQV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/images/DCATPropertyExtensionToDQV.png -------------------------------------------------------------------------------- /dcat/images/DataService.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/images/DataService.png -------------------------------------------------------------------------------- /dcat/images/Research dataset profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/images/Research dataset profile.png -------------------------------------------------------------------------------- /dcat/images/Resource+Representation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/images/Resource+Representation.png -------------------------------------------------------------------------------- /dcat/images/Resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/images/Resources.png -------------------------------------------------------------------------------- /dcat/images/Service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/images/Service.png -------------------------------------------------------------------------------- /dcat/images/Standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/images/Standard.png -------------------------------------------------------------------------------- /dcat/images/WebService.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/images/WebService.png -------------------------------------------------------------------------------- /dcat/images/dcat-model-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/images/dcat-model-1.jpg -------------------------------------------------------------------------------- /dcat/images/dcat-model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/images/dcat-model.jpg -------------------------------------------------------------------------------- /dcat/images/dcat-relationships.drawio: -------------------------------------------------------------------------------- 1 | 7Vtbd6I6FP41PtoFARQfq+14Lp2zetqZ6cy8nBUhakYgNkSr/fVnA4lcFduidlbtS802QLL3t799IbaMgb8acjyffmYu8VpIc1ct46qFkK7bOvyLJOtE0kNWIphw6spJqeCePhMp1KR0QV0S5iYKxjxB53mhw4KAOCInw5yzp/y0MfPyT53jCSkJ7h3slaUP1BXTRGqjbir/g9DJVD1Z7/SSb3ysJsudhFPssqeMyLhuGQPOmEg++asB8SLlKb08/Ll+8G5mneFf/4aP+Gv/7y//fGsnN/v0kks2W+AkEK++tXfphd9nwXr1+PO/mf0t/Hm9JG1dbnaJvYVUmNysWCsNcrYIXBLdRWsZfcbFlE1YgL0bxuYg1EH4iwixlrbHC8FANBW+J7/dc/lymyFbcEc+eukP7/2vmC5s99doZA790O20UdeUOMJ8QsSu3XWSicTNYUTqZ0iYTwRfwwROPCzoMg8ZLJE32cxLtQsfpIJfoGyjW1K262DYwCUg646BvouqjxZ+g0fgkjmFYo9OAvjsgEIJB8GScEEB85fyC5+6bnSPPichfcaj+H6R9eaMBiLel9VvWVcgGbNASMvpZqWxdgMHnkxWrQpPlk/NOUtO6fKqtnahG0haSpKMBOHeZpE3v412l5nCxuMQAFK022YNrzeliSpMCbbw4cmXybJZ0EId7IOL9INRON+otmDeezkMWBAb7K3ORgL3MqJNGI485swS0SfqqQn1Bj+Sdxq9U3nn7oWX3fNOGjSc0nnJiOET9T0cGy9WrfwmUrUzpZ57g9dsEekhFNiZqVF/yjh9hvlY2QW+5sow4A7ZGffRlRISsUeTW2UuvSD6jFe5iTc4FFLgMM/D85CONuvzwUQ06DMhmC8nhXPs0GAiR2/DSokbtnKArrIF6f8dOXxKI7Zu2IlsmonWne7BwGC9lKthqyI2I2czMmAe46lXj8H9CiLF4R4ZiwoGF5G7K2vcxHOuzFRyJ3UQiRhcO/Zij58C75MgphGBxVbe74N6B9qFFUUANICxno7joDAH4hkA3gXHNLY0ARg9kQhKOZC/BjE1zlePGRUjOvthRLcOhRFb2ysInHFyUpyY+n44UXhqPO1DRn2Onc0E0qB/nUoPnBhob0oEdibftXmAqq/eSZau1l2RBlTR/iHCP4S1DxX+jV4+/OvWEeP/TkxmQBDOWMTrQHcOmYszDo6Ag31D/OFg0CvZuQEehpV9j66/0LSeEvxIBB1LCa6UAZPROju6JZzCBqPSXwprar6GqV21AJtj7EIBv8GDfoFMpKk/lEeHhi46di/9M/P3TwKPvGXzLQBja5z4/bo5qLFuDmDYVJe+3/aNUS7155wtwXZ4QoIyuf/mjZqdTlzfp9HfVX6GypW5tN2lEJyOFpVV17lL03yXBoj51PH5xRx8rr73Q8xu13uXTZrqJZffuexk+jM+joqPkzdnVHCriCaV+DiXec2XeQY6dRwxyy06GUceF+DiY0rcu2393IPkhisqkhLR7iA5jirENqTXSAnSCjEa5ArE5Fq0KSZ/ZL/cWlm+MB+NHlusRBvOUdUrwmyOursv3HBJChrB68wEycBbK9a2rhWwXTiUUZhfTKny0+FDsoBm311vLX42YN+VSR8S73oG6/qeMD8oxo+A5yN1WN7Gj+Us6ji4SO0lb5l/ZRFH0aJFY2FmUkqmVreXBVg9l56G4apN0PhZptcRHNpSBG5juLah1lB9wYE47hjn2mrfqKXIM41uIYwb+/KbQm3aJe716miuAreVjeOGwWzae4K5+aM/zUTrWjDXoP8wYDbKYN4cTJI2OUaZomv2x6pT2qj3umNJXa0GqP7qLuqpB5OoQ5U+roDGnlHxOK38uGJxjD3w8AAL0o8YLixF/wYgaVUdfYkhGRK+JOEVFlj17o9XLFmvSB8vckWSXsesJ04gzX0PVSgqPjXDIrNQ4Ng1DFuqiOxjpAtb+8gRkO8B0vRMsgci2dJLf/vMsoplX3hyrClGzZVV8qalqiplQsfDYUidL1MalFLgU2WYFmqa/95UQFtbX1o+4XBIAsIBSG5/XWne93lmYAPOJn4BonWNfJX47o8QKCRWh4yq3OccLpoIF3rnHC5qOK/iXZYDTkRFmV7OmGziXIRRSFm7HwCSMEx/+ppMT39AbFz/Dw== -------------------------------------------------------------------------------- /dcat/images/ex-spatial-coverage-bbox-netherlands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/images/ex-spatial-coverage-bbox-netherlands.png -------------------------------------------------------------------------------- /dcat/images/ex-spatial-coverage-centroid-anne-frank-house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/images/ex-spatial-coverage-centroid-anne-frank-house.png -------------------------------------------------------------------------------- /dcat/images/ex-spatial-coverage-geometry-anne-frank-house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/images/ex-spatial-coverage-geometry-anne-frank-house.png -------------------------------------------------------------------------------- /dcat/images/membership-predicate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/images/membership-predicate.png -------------------------------------------------------------------------------- /dcat/images/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/images/qr.png -------------------------------------------------------------------------------- /dcat/images/relation-sub-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/images/relation-sub-properties.png -------------------------------------------------------------------------------- /dcat/images/schema.org-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/images/schema.org-dataset.png -------------------------------------------------------------------------------- /dcat/images/version-backward-compatibility-dcat.drawio: -------------------------------------------------------------------------------- 1 | 5Zltc6IwEIB/jR9xIAGhH619uZfeXK+9qe19iyRK7oAwIYrer78gAQQsWrXVXmc6HbLZ3ZDdzeNGO3AQzK85irxvDBO/A3Q878CLDgCGDkAn/dPxIpOY0M4EE06xUioF9/QvyS2VdEoxiSuKgjFf0KgqdFkYEldUZIhzllTVxsyvrhqhCWkI7l3kN6VDioWXSR1LL+WfCJ14+cqGrmYClCsrQewhzJIVEbzswAFnTGRPwXxA/DR4eVwyu6tnZosX4yQU2xg8il86csMLC2rD87PIwYF9panszJA/VRv2hEhD208dgaskSboJ7DI+kYOfd/LfjLlopGEXCc1Y6iz3JhZ5wDibhpikaxodeJ54VJD7CLnpbCJLRMo8EfhqurkHta0Z4YLMV0RqT9eEBUTwhVRRBQUsJzNJyvQUMfdWUtNTMqQqYlK4KoMmH1TcXhBDuE8MwVFjqGaL2JxMTM19Ygr3jilGsVfoHiDAFji1AAOrEeFGyEiI+ylC5cj1URxTtxolMqfiUT7rXektGz6tTF2km9fzwSIfhPL1MyvbyseFWToo7Zaj3PDZNMRsyl2y+YAKxCdEbIYhwZWPhGZSOfGRoLPqJ8S6DCnTW0blKxfFAJ1qMUCzluRsQ8pqleg1R8YZ6FpVV4ZTdZXtueFKphUtVtSiVCFueWWjto6lt79Zr1VfPmRvUNZvEd49SrrXKOkUB5IZESczyqbxA+ExZWGz0GXGb9BIti7wnJOY/kWj5ZRerXfk00mYHgZZgYRLQQoAKnuFvpoIKMap4ZpabT2EqnlRq5YtwxaA2bUWVWLyms8t2HgcE9Gp0+UQ2bE/DnDMLYED3wY4PWi0U2Jb4EBbb3d0INxY9stwY4Jj4MZ5d7ix/0vcfDGgubjWPoOH/lz0iXsbu981o5GcPWizE2w+aHNTP4pgR9YYdQbUHR2qtakzzdnQ2hit+nuzZm01N6/pOP2uo89J5Ms7THwMxLQdu49AmINeoFYJo+9EGP3VCANOq5upH1ig73h9Mjc5OhBh6sTI19m2y6rpvw5h1t2dUsLQ+C5jDD5fnAxl3vDatO2XLDdD7feT/9X8cek6vUdnrN2K8LBNiL0TI8AbQeLU2pD6GYK7fsdSc+S8DiPqNxij184Iq1V9b0SsreZmE8IS6aA/Qu6fBHE8YEEkcyZP45AK7xiwaDuE77slkcPyl6JMvfy9DV7+Aw== -------------------------------------------------------------------------------- /dcat/images/version-chain-and-hierarchy-dcat.drawio: -------------------------------------------------------------------------------- 1 | 5Vtbj5s6EP41eUxkbAjkcS/dnodWrc4enW7Pmxe8wRIJkXGWpL/+mGAHbG8SlgRCu1K1iscX8Mx838wYd4TuFpvPDK/ir2lEkhEE0WaE7kcQOgDCUfEPRNtSggJQCuaMRnJQJXikv4iaKaVrGpFMG8jTNOF0pQvDdLkkIddkmLE014e9pIn+1BWeE0vwGOLElv6gEY9LaeCBSv4XofNYPdkBsmeB1WApyGIcpXlNhD6N0B1LU17+WmzuSFIoT+mlnPdwoHf/YowseZMJT/w/gMPlvYfGP25nqyBa+A9jucorTtZywzHnhWpvioXgQ57nkxxNUjYXjX/+Fn9e0xA/j6MQ892I3c74VqmLpetlRIonOiN0m8eUk8cVDoveXDiIkMV8kchuewfqdQjjZFMTyR19JumCcLYVQ2QvnErtSvdyZTOvbLU3QFyzk5qGpXvM9ytXGhQ/pBLfoVB4hkILa1xRpVKF0AuurEN0jg7hEN3y+jp1z9EpOlunEc7i/dgLKNiDQ1Pw1FKwpTGyjG6KkCRaYYKzjIa6ksiG8qfa75/iN5j4nmzeF3sHqrFVjaV4+6fdSOip9s96ZzVv11ITD1ohS9csJKeDBsdsTvhpnyORFmJtmzKSYE5f9Yj7loHk1O8pFa9c+QLQfcEzTFzuR06qB0hjnaln+BQK9IXKDVsLCZvibW3YqhiQHXlfYdH6cwLPcL5ywcoV96pq752+5Z27CI5uYpz9S1hG06XtrsJuX/CzSOjQLSMZ/YWfd11A91qc0PmycGnhR4QJQYFiKjKoG9mxoFFUTHzD444hSWZ08qH79KYJSTR2qLMQr1LUsyDfFr2KK9Q8SRfOUa7oHvKoH8gjA/IOaol599RCF8I8cnTMO4GWrHcDesfO7iXqhwl8Bag+kG+YSZplDGf6lPTlJSN8ZFLFJYxjVwqtEwYw+YgcAA1IOS05wFwITpvF/Yt5gl3vVMH5bs0KSw0OqvB3CdJ24XNOkPa1IO00DtJ+HaCgI4CihgB1egIoMgAK2wLUWAj6PQPUOwRQqmLot5fhQNP9SFH0EmW3grdTx3Y9IR8GvN1hwXvqmkcwbXNwkyfMQH6hHHwa6M/xeqi7nYOF9yCpo8fS+20bmWWS1xuRBBcgkjfT8eN0UOUW7ySf9jwCh8UjJvyt9Lspj0Bvpi00RZ3QyJ6e+qSR2W9FI8HVMxDHmNIdcUA7OTyDON5xmNe6KmnPHE0LDNgPc+zvEqi7BW7LDMSZwYlOQsjp5uzfPAdEHjj+ZtOj47thG2gn1ZJtVoy80nQ9uJNDBcJr1jy9EY6dUv6xhNO05OnpyHGKnOMs0fhEwwfHF+roU+MpunHhNejGTr2HTjf+B6IbO/VsTTf6xYbG9xpcH9XpZgwmQNTVJ85mitZ3wqjYf2HzP+vKgzvT+WNm1MlNecgL2n36ePfRC3S15/g90AqyP89Xn1W+4Gxw31QU0q53+gImMz3AmUt0RzPoEt9pVFaj0Uzz+1P+wO5P9VRGQSMZmRnnJifJZE8e3ZzbmjVQH/el0MFPPgO8N6Gwcz3iGOsWUmHwHNoQzepufDm8+h8G6NP/ -------------------------------------------------------------------------------- /dcat/images/version-chain-and-hierarchy.drawio: -------------------------------------------------------------------------------- 1 | 5VpLk5s4EP41PjKlBxg4ziPJHnYrqZqqzWRvGtDYqsLgEvLYzq+PGCSDxNhmsHlsUsUBtZ509/epW2KG71e7L5ysl/9kMU1mCMS7GX6YIQQBQrPiAfG+lLjYLwULzmLVqBI8sp9U91TSDYtpbjQUWZYItjaFUZamNBKGjHCebc1mL1lizromC9oQPEYkaUq/s1gsS2nggUr+F2WLpZ4ZAlWzIrqxEuRLEmfbmgh/muF7nmWifFvt7mlSKE/rpez3+UjtYWGcpqJNhyfxHyBR+uBh5/tduA7ilf/ZUaO8kmSjPni1j5jYO88bqbjbXGRSz+XyxV7rhGebNKbFsHCG77ZLJujjmkRF7VZ6gZQtxSpR1c1l6jkpF3RXE6llf6HZigq+l01ULZorFWofUsVtZZCDlpc1Y+huRPnA4jBypSb5ojT1Aa2hFlpzEICeA6B8xlOgUhjygpE1httrrHgm53Lja9BtrUGIHOCPrkEPTU2D84YGG0qiaXxbbBqyFCUkz1lk6oXumHiqvf+Q7+DG91Txofh2oAt7XUjl6p/eWiJPl3/UK6t+byXd8agV8mzDI3qe1gXhCyrOOxWNjU2waVNOEyLYq7knvmcg1fVbxuSSK18Api94lonL71Gd6luYNc7cs3wKB+ZA5Qc3BpI2Jftas3XRID+xXt8z5gk8y/nKAStXPKiqu3f6De+MIyJtd7sk+b+U5yxLm+4q7fY3eZYhF77jNGc/yfNbFTC9liRskRYuLf2IcikoUMxkjHOrKlYsjouO73jcKSSpmEtNeghA2pBEa4e6CPE6iLwI8l3Rq7lC91N0AU9yRf+Qx8NAHluQh7gj5t1zA10J8xiamIeBEU73A3rYjL8V6qcJfA2oIZBvmUmZxUGh2SV7ecmpmNlUcQ3jNEOuS9jDN9gDtmYPv84eoCf2wC3ZAw7EHtgCI+rIHvZAyG8XMVzNh7xjAGca3F9fpgNv90+C9zXyAQ1vaEQGtUhhGvB2pwXvuWvnhl2DA5snYD/BwTww5/EGSAjg0YxgktQxYE7wvo3s+M0bjEiCKxDJgQ/a00EVW3yQfLrzCJoWj9jwlzjtxiPIC42B5rgXGjnQ05A0Ev6vaCQYPQKBVpf+iAM1g8MLiOMDpwyds5LuzNE2wUDDMAcOTCRit2MEAkN0Y5IQhv0cStoHFNgDp1c2P9m+H7ZBzaBasc2a01eWbSZ3pKFBOGbOMxjhNEPK35Zw2qY8A52HzjE8zRKtTzR8cHqgnu5AztGNi8agm2boPXW68f8gummGnp3pxrxxbX3h6vq4TjcOuAEyrz5zNlOUvlHO5PcXNv+97mLd0OSP0MqT2/KQF5zJva519IJcYx5/AFrBzXvD6jL2fsMLJ5gcsYSjEYsaFdyE5h432FEuvsZNjY5rOv7a4U/s146BEilkhSOhdXJylk4O9NHPya2dBQ3xKwc+eukzwStdjZ3xeMMxLaQ3wktoQxarH2vL5tXvyfjTLw== -------------------------------------------------------------------------------- /dcat/images/version-replace-dcat.drawio: -------------------------------------------------------------------------------- 1 | 5Vhtb9owEP41+Qhy7AToR+jbNm1a1U5tt29u7BJLIY4cQ0h//WzivNNAgRa2Sgjlzndn+7nzk3MsdD5bXgsc+T84oYEFAVla6MKC0AYQWvoHSJppHDTMFFPBiDEqFXfsheaeRjtnhMY1Q8l5IFlUV3o8DKknazosBE/qZs88qM8a4SltKe48HLS1D4xIP9OOXFDqv1A29fOZbWBGZjg3NorYx4QnFRW6tNC54FxmT7PlOQ00eDkumd/VK6PFwgQN5TYOj/IPwF544aLew+QsGpHZ8KpnsrPAwdxs2JdSQzvWgeBVkiT9BPW5mCrh1636W3APP/WIh2XPXtms9ibTHDDB5yGhek7bQpPEZ5LeRdjTo4kqEaXz5Swww+09mG0tqJB0WVGZPV1TPqNSpMrEFBR0R5lLUqanwNyvpGZgdNhUxLQIVYKmHgxub8AQ7YMhPCqGZrTA5mQwdfbBFO2NKcGxX9geAGAXnhrA0G0h3IKMhmSsKVRJXoDjmHl1lOiSyUf1DPoqWib+rgxd6M2DXEhzIVTLz7yGbi4Xbloo/VZS7vhqGmI+Fx7dfEAlFlMqN5MhJbVXQjupggZYskX9DbEuQ8b1hjO15KIY0KheDMhpJDnbkPGqMnojkH0G+249lD2qh8r23Aql0orTilmkDeKOJduNeVzQvbJBp716yFZQ1m8B7x4lPWiVtKYDxRmRoAvG5/E9FTHjYbvQVca/4yfVuqCJoDF7wU+rIVCvdxywaagPg6pAKpRCEwBTvcLYDMwYIdpxTa12HkLTvJhZy5ZhC4LZtRZNYvKazz3483NMpdVkl0NkZ/h5CMfZknDQxxDOANndLLEt4aAh6A50ILpxh2+jGwceg25G/xzdDP9LuvlmIye97n2F9+OlHFPvJvZ+9uxWcvZgm53I5pM2N82jCHfkGrvJAc1Ah2ptmpw22tDa2J32e3PN2mpuX9OJ/tYxFjQK1B0mPgbFdB27z8AwB71AVRkG7MQw4N0YBp5WN9M8sBDseH1yNgU6EMM0GSOfZ9suq2H/Pgyz7u6kGYbFtxnHkEl6MizzgdemVz6yKLH8cpvloPz+jS7/Ag== -------------------------------------------------------------------------------- /dcat/images/version-replace.drawio: -------------------------------------------------------------------------------- 1 | 5VlZc5swEP41fiQjxJlHO87RTo9MM1MnfZNBsTWDERXyQX59RRC3DdgmsZvM8IBWuytpj49dMdCuFptbhoL5d+pibwCBuxlo4wGEKoBwED/AjRKKZoOEMGPElUw54YG84FRSUpfExWGJkVPqcRKUiQ71fezwEg0xRtdltmfqlVcN0AzXCA8O8urUCXH5PKHaBsjpd5jM5unKKpAzC5QyS0I4Ry5dF0ja9UC7YpTy5G2xucJebLzULonczY7ZbGMM+7yLwCP/A5Djjw1NmYwuA9tdWDeK9M4KeUt54EXkEB4p06Uw3DDkNAgVCFRDAap45El4lJqH0aXv4ngFdaCN1nPC8UOAnHh2LQJC0OZ84cnp+o6lwhVmHG8KJHmCW0wXmLNIsMjwgYadiKxzZ2QWnhccYUoakv6fZapyE4kXaaU9LKZ1t1j8nM5icjazxNlYUO9sQRUqwDq5BQ14bhaERs2ENSth3x3G+CdGjofCkDhlw+AN4Y/iHVwIbcnwqTA1jg8P0kGUDnyx/UTKMtJxJhYPcrnXUSq40w0hXTIHt+cbR2yGeTuSYbeE53WnMuwhTlZleN/mISl6T4nYchYM2fcr/Z7pFScnB5JSRTiuKFIv4YVRVqXaZVXJmWuqhFtRVGALYoawYctqZR0DNO/MbOQXL8kO8vjNzHtESJu1kHYdJBw+DBheEboMf2MWEurXA114/BuairpDGzEckhc0fZ0C5XhHHpn5cTKICMRMEGIAIOJDP5QTC+K6seCWWG1MQll5yFXz730HgDk0FqVj0phPJejzc4j5oIoufXjH+jyAo3cEHO19AMfU1GaU6Ao4mgWaFfUEN4a1H9zo8BRwY/93cGN9SLj5qmp6dKt8gb+HGz7Ezn3o/FTUmnOOQBvN1ItwcwGE7ztCzl6IEyu5x4yIw8cO/2BlTzVJ4YEopFbRoaqor6JHr6Cd3VL0qI38R6PQ1jivd99ufIUxZDjwREMTngJ8mhLyM2BPr62VVax0QFfYgSXcAW9W6cDzqnSqBQoEB7ZWepuinjCm2ijVbuBaGrEK/9tgzLa+KsYYEv5KUMYdRWeDM+/YUnW9gLkZz574jxeHGn8nijU1JvblXb8FyrthRCWBt4JGKxjob5L71SYgu2PbN/dNu0VRT7lf23BL7le7or5zf2uY7qovTpH7nXO6HJa70+9UuV//AbB/7h/RYsimxoblpgaYzcixsznpAgr93pn0f0UCzFJuHXxFooP3uSIxgV5ep6U5qV3d9NycbI3z+m+a0zQnfQJHz/HXY3Mihvmv4IQ9/6GuXf8D -------------------------------------------------------------------------------- /dcat/issues-in-index.html: -------------------------------------------------------------------------------- 1 | 2 | 53 3 | 57 4 | 64 5 | 66 6 | 71 7 | 76 8 | 77 9 | 80 10 | 95 11 | 98 12 | 104 13 | 105 14 | 109 15 | 110 16 | 117 17 | 118 18 | 119 19 | 120 20 | 121 21 | 122 22 | 123 23 | 124 24 | 125 25 | 126 26 | 127 27 | 128 28 | 131 29 | -------------------------------------------------------------------------------- /dcat/issues-tagged-with-dcat: -------------------------------------------------------------------------------- 1 | 93 2 | 94 3 | 96 4 | 104 5 | 105 6 | 106 7 | 107 8 | 109 9 | 110 10 | 111 11 | 113 12 | 114 13 | 116 14 | 117 15 | 118 16 | 119 17 | 120 18 | 121 19 | 122 20 | 123 21 | 124 22 | 125 23 | 126 24 | 127 25 | 128 26 | 130 27 | 131 28 | 132 29 | 133 30 | 134 31 | -------------------------------------------------------------------------------- /dcat/publication-snapshots/CR/images/ex-spatial-coverage-bbox-netherlands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/publication-snapshots/CR/images/ex-spatial-coverage-bbox-netherlands.png -------------------------------------------------------------------------------- /dcat/publication-snapshots/CR/images/ex-spatial-coverage-centroid-anne-frank-house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/publication-snapshots/CR/images/ex-spatial-coverage-centroid-anne-frank-house.png -------------------------------------------------------------------------------- /dcat/publication-snapshots/CR/images/ex-spatial-coverage-geometry-anne-frank-house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/publication-snapshots/CR/images/ex-spatial-coverage-geometry-anne-frank-house.png -------------------------------------------------------------------------------- /dcat/publication-snapshots/PR/images/ex-spatial-coverage-bbox-netherlands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/publication-snapshots/PR/images/ex-spatial-coverage-bbox-netherlands.png -------------------------------------------------------------------------------- /dcat/publication-snapshots/PR/images/ex-spatial-coverage-centroid-anne-frank-house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/publication-snapshots/PR/images/ex-spatial-coverage-centroid-anne-frank-house.png -------------------------------------------------------------------------------- /dcat/publication-snapshots/PR/images/ex-spatial-coverage-geometry-anne-frank-house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/dcat/publication-snapshots/PR/images/ex-spatial-coverage-geometry-anne-frank-house.png -------------------------------------------------------------------------------- /dcat/rdf/dcat2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Data Catalog Vocabulary (DCAT) Namespace 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 |

16 | W3C 17 |

18 |

DCAT 2 Vocabulary

19 |
20 |

21 | This is a namespace for use with Data Catalog Vocabulary (DCAT) Version 2 22 |

23 |
24 |
This version
http://www.w3.org/ns/dcat
25 |
Latest version
http://www.w3.org/ns/dcat/
26 |
Date
2019-09-XX
27 |
Revision
2.0
28 |
Author
David Browning
29 |
Contributors
W3C Data Exchange Working Group (DXWG)
30 |
31 | 32 |

Status of this document

33 | 34 |

35 | This vocabulary was published by the Dataset Exchange Working Group. See the full Data Catalog Vocabulary Version 2 specification for a detailed, human readable version of the vocabulary. Any comments or errata for this page or associated resources should use 36 | the process defined in that document. 37 |

38 | 39 |

Namespace URI

40 |

41 | The namespace URI for DCAT is http://www.w3.org/ns/dcat#. 42 |

43 |

Alternative serialisations

44 |

45 | The vocabulary is published both in human- and machine-readable forms. A GET request made to the canonical namespace URI will cause HTTP Content Negotiation to occur, which means that the most appropriate variant will be served according to your request. However, if you explicitly wish to retrieve a particular serialisation, you can also do so using the following URLs: 46 |

47 |
48 |
dcat.html
49 |
HTML (this document)
50 | 51 |
dcat.ttl
52 |
RDF (Turtle)
53 | 54 |
dcat.rdf
55 |
RDF/XML
56 | 57 |
dcat.jsonld
58 |
RDF (JSON-LD)
59 | 60 |
61 | 62 |

63 | In addition, the RDF for externally defined terms where DCAT has provided additional documentation or usage notes can be found at 64 | dcat-external.ttl and alternatively dcat-external.rdf (XML/RDF) or dcat-external.jsonld (JSON-LD) 65 |

66 | 67 |

Older Versions of Ontology files

68 |

69 | The ontology for the 2014 version of DCAT can be seen in Turtle or RDF/XML. Version 2 aims to be backwardly compatible with this earlier version. 70 |

71 | 72 | 73 | -------------------------------------------------------------------------------- /dcat/small.css: -------------------------------------------------------------------------------- 1 | 2 | #respecDocument { 3 | padding-left: 30px; 4 | padding-right: 2px; 5 | } 6 | 7 | div.specterm { 8 | padding-left: 2px; 9 | padding-right: 2px; 10 | } 11 | 12 | .specterm table { 13 | max-width: calc( 100% - 4px); 14 | word-wrap: break-word ; 15 | overflow-wrap: break-word; 16 | } 17 | 18 | .specterm table tbody th, .specterm table tbody td { 19 | padding: 2px; 20 | } -------------------------------------------------------------------------------- /dcat/style.css: -------------------------------------------------------------------------------- 1 | /* Force W3C logo to site side by side with OGC logo */ 2 | .head img[src*="logos/W3C"] { 3 | display: inherit !important; 4 | } 5 | .head a:hover > img[src*='ogc'] { 6 | opacity: 0.8; 7 | } 8 | 9 | /* Styles to replicate key LODS styles */ 10 | 11 | ul.hlist { 12 | list-style-type:none; 13 | background-color: #eee; 14 | } 15 | ul.hlist li { 16 | display:inline; 17 | margin-right: 1em; 18 | font-size:smaller; 19 | } 20 | .entity { 21 | border: 0px solid black; 22 | padding: 1.5em; 23 | margin-top: 1.5em; 24 | } 25 | .entity h4 { 26 | margin-top:0; 27 | } 28 | .entity dl { 29 | border: dashed thin black; 30 | border-width:0px 0; 31 | background-color:#eee; 32 | margin: 0 0.5em; 33 | } 34 | p.iri::before { 35 | content: "IRI: "; 36 | font-weight: bold; 37 | font-family:sans-serif; 38 | } 39 | p.iri { 40 | font-family:monospace; 41 | } 42 | span.logic { 43 | font-weight:bold; 44 | color:purple; 45 | } 46 | span.dotted { 47 | text-decoration-line:underline; 48 | text-decoration-style: dotted; 49 | text-decoration-color:black; 50 | } 51 | 52 | /* Styles to replicate key SpecGen styles */ 53 | 54 | .specterm { 55 | margin-top: 1em; 56 | } 57 | 58 | .specterm h4 { 59 | margin-top: 1em; 60 | } 61 | 62 | .specterm table { 63 | margin-top: 0.5em; 64 | } 65 | 66 | section.specterm { 67 | padding-left: 1.5em; 68 | padding-right: 1.5em; 69 | padding-top: 0.1ex; 70 | padding-bottom: 0.1ex; 71 | } 72 | 73 | .azlist { 74 | margin-top: 10pt; 75 | padding: 5px; 76 | border: 1px solid #e3dcf2; 77 | } 78 | 79 | 80 | /* Styles added by Kerry for formatting code including ttl */ 81 | .tab1 { 82 | text-indent: 24pt; 83 | } 84 | .tab2 { 85 | text-indent: 48pt; 86 | } 87 | .tab3 { 88 | text-indent: 72pt; 89 | } 90 | .tab4 { 91 | text-indent: 96pt; 92 | } 93 | .tab5 { 94 | text-indent: 120pt; 95 | } 96 | 97 | /* Styles added by Simon for clean table borders */ 98 | 99 | table { 100 | width: 100%; 101 | border-collapse: collapse; 102 | } 103 | 104 | th { 105 | background-color: #f2f2f2; 106 | } 107 | 108 | th, td { 109 | border: 1px solid #ddd; 110 | } 111 | 112 | th, td { 113 | padding: 10px; 114 | text-align: left; 115 | } 116 | 117 | .specterm h5 , .specterm h6 { 118 | font-weight: bold; 119 | font-style: normal; 120 | font-variant: normal; 121 | margin-top: 1em; 122 | margin-bottom: 1em; 123 | } 124 | 125 | section.specterm, section.specterm th{ 126 | background-color: #c7eae5; 127 | } 128 | 129 | section.specterm.sosa, section.specterm.sosa th{ 130 | background-color: #c7eae5; 131 | } 132 | 133 | section.specterm.ssn, section.specterm.ssn th, section.specterm.sosa tr.ssn, section.specterm.sosa tr.ssn th { 134 | background-color: #67a9cf; 135 | } 136 | 137 | 138 | .buttonpanel { 139 | display: flex; 140 | justify-content: flex-end ; 141 | margin-top: 1ex; 142 | margin-bottom: 1ex; 143 | padding-left: 1ex; 144 | padding-right: 1ex; 145 | padding-top: 1ex; 146 | padding-bottom: 0.6ex; 147 | border: 0px dotted black; 148 | font-size: small; 149 | } 150 | -------------------------------------------------------------------------------- /errata/README.md: -------------------------------------------------------------------------------- 1 | Errata document created following the instructions at https://github.com/w3c/display_errata 2 | -------------------------------------------------------------------------------- /errata/assets/errata.css: -------------------------------------------------------------------------------- 1 | div#toc a, section#toc a { 2 | text-decoration: none; 3 | } 4 | 5 | div#toc a:hover, section#toc a:hover { 6 | background: yellow; 7 | color: red; 8 | } 9 | 10 | div#toc ul, section#toc ul { 11 | list-style-type: none; 12 | margin-left: 1.5em; 13 | padding-left: 0; 14 | } 15 | 16 | .tocvisible, .tochidden { cursor: pointer; } 17 | .tocvisible:before { 18 | content: "▾ "; 19 | font-size: 110%; 20 | font-family: monospace; 21 | } 22 | .tochidden:before { 23 | content: "‣ "; 24 | font-size: 110%; 25 | font-family: monospace; 26 | } 27 | 28 | span.state_open { 29 | padding-left: 0.2em; 30 | padding-right: 0.2em; 31 | background-color: darkseagreen; 32 | color: black; 33 | } 34 | span.state_closed { 35 | padding-left: 0.2em; 36 | padding-right: 0.2em; 37 | background-color: indianred; 38 | color: black; 39 | } 40 | 41 | /* Careful: the content below are two non-breakable spaces (in UTF-8)! */ 42 | span.tocnumber:not(.tocvisible):not(.tochidden):before { 43 | content: "  "; 44 | font-size: 120%; 45 | } 46 | 47 | body { 48 | font-family: arial, helvetica, freesans, clean, sans-serif; 49 | color:black; 50 | line-height:1.4em; 51 | padding: 2em 2em; 52 | } 53 | 54 | section section { 55 | margin-left: 4em; 56 | } 57 | /* Links... */ 58 | 59 | a { 60 | color: NavyBlue; 61 | background: transparent; 62 | } 63 | 64 | a:link, a:active { 65 | background: transparent; 66 | text-decoration:none; 67 | } 68 | 69 | a:visited { 70 | color: NavyBlue; 71 | background: transparent; 72 | } 73 | 74 | a:hover{ 75 | background-color: yellow; 76 | color: #00e; 77 | } 78 | 79 | a code, a:link code, a:visited code { 80 | color:#4183c4; 81 | } 82 | 83 | a:link img, a:visited img { 84 | border-style: none 85 | } 86 | 87 | /* Headers */ 88 | h1, h2, h3, h4, h5, h6 89 | { 90 | margin-bottom: 0.5em; 91 | margin-top: 1em; 92 | padding-bottom: 0.15em; 93 | border-bottom: 1px solid #ccc; 94 | background: transparent; 95 | color: #005a9c; 96 | font-weight: normal; 97 | } 98 | 99 | .title-date { 100 | font-size: 1.4em; 101 | color: #005a9c; 102 | font-weight: normal; 103 | } 104 | 105 | footer 106 | { 107 | margin-top: 2em; 108 | border-top: 1px ridge #ccc; 109 | font-size: 90%; 110 | } 111 | 112 | h1 113 | { 114 | border-bottom: none; 115 | } 116 | 117 | h5, h6 { 118 | border: none; 119 | font-size: 100%; 120 | } 121 | 122 | headertoclevel1, .headertoclevel2, .headertoclevel3, .headertoclevel4 123 | { 124 | border-bottom: 1px solid #ccc !important; 125 | } 126 | 127 | .headertoclevel1 128 | { 129 | font-size: 1.5em !important; 130 | } 131 | 132 | .headertoclevel2 133 | { 134 | font-size: 1.17em !important; 135 | } 136 | 137 | .headertoclevel3 138 | { 139 | font-size: 1em !important; 140 | } 141 | 142 | .headertoclevel4, .headertoclevel5 { 143 | border: none !important; 144 | font-size: 1em !important; 145 | } 146 | /* --- */ 147 | 148 | hr { border:1px solid #ddd; } 149 | 150 | dt { 151 | font-weight:bold; 152 | margin-left:1em; 153 | } 154 | 155 | sup { 156 | font-size: 0.83em; 157 | vertical-align: super; 158 | line-height: 0; 159 | } 160 | 161 | .summary { 162 | font-size: 1.4em; 163 | color: #005a9c; 164 | font-weight: normal; 165 | } 166 | div.issue { 167 | margin-left: 1em; 168 | margin-bottom: 0.3em; 169 | padding-right: 0.5em; 170 | padding-left: 0.5em; 171 | padding-top: 0.2em; 172 | border-radius: 10px; 173 | border: solid black 1px; 174 | } 175 | span.what { 176 | font-weight: bold; 177 | font-style: italic; 178 | } 179 | -------------------------------------------------------------------------------- /profiles/.gitignore: -------------------------------------------------------------------------------- 1 | # JetBrains tools' indexes 2 | .idea/ 3 | -------------------------------------------------------------------------------- /profiles/config.js: -------------------------------------------------------------------------------- 1 | var respecConfig = { 2 | specStatus: "ED", 3 | shortName: "profile-guidance", 4 | edDraftURI: "https://w3c.github.io/dxwg/profiles/", 5 | editors: [ 6 | { 7 | name: "Rob Atkinson", 8 | company: "Metalinkage, Open Geospatial Consortium", 9 | companyURL: "http://www.opengeospatial.org/" 10 | }, 11 | { 12 | name: "Karen Coyle", 13 | company: "Dublin Core Metadata Initiative", 14 | companyURL: "http://dublincore.org/" 15 | }, 16 | { 17 | name: "Antoine Isaac", 18 | company: "VU Amsterdam and Europeana", 19 | companyURL: "https://www.europeana.eu/" 20 | }, 21 | { 22 | name: "Nicholas J. Car", 23 | url: "https://people.csiro.au/Nicholas-Car", 24 | company: "CSIRO", 25 | companyURL: "https://www.csiro.au/" 26 | } 27 | ], 28 | wg: "Dataset Exchange Working Group", 29 | wgURI: "https://www.w3.org/2017/dxwg/", 30 | wgPublicList: "public-dxwg-comments", 31 | wgPatentURI: "https://www.w3.org/2004/01/pp-impl/99375/status", 32 | inlineCSS: "true", 33 | lint: "false", 34 | noRecTrack: "true", 35 | github: "https://github.com/w3c/dxwg/issues/", 36 | issueBase: "https://github.com/w3c/dxwg/issues/", 37 | localBiblio: { 38 | "PROF-CONNEG": { 39 | editors: [ 40 | "Lars G. Svensson", 41 | "Rob Atkinson", 42 | "Nicholas J. Car" 43 | ], 44 | href: "https://www.w3.org/TR/2018/WD-dx-prof-conneg-20181218/", 45 | title: "Content Negotiation by Profile", 46 | date: " 2018-12-18", 47 | status: "W3C First Public Working Draft" 48 | }, 49 | "PROF-GUIDANCE": { 50 | editors: [ 51 | "Rob Atkinson", 52 | "Karen Coyle", 53 | "Antoine Isaac", 54 | "Nicholas J. Car" 55 | ], 56 | href: "https://www.w3.org/TR/profile-guidance/", 57 | title: "Profile Guidance", 58 | date: " 2018-12-31", 59 | status: "W3C Editor's Draft" 60 | }, 61 | "PROF-IETF": { 62 | authors: [ 63 | "L. Svensson", 64 | "R. Verborgh" 65 | ], 66 | href: "https://profilenegotiation.github.io/I-D-Accept--Schema/I-D-accept-schema/", 67 | title: "Negotiating Profiles in HTTP", 68 | date: " 2017-10-24", 69 | status: "IETF Internet Draft" 70 | }, 71 | "PROF": { 72 | editors: [ 73 | "Rob Atkinson", 74 | "Nicholas J. Car" 75 | ], 76 | href: "https://www.w3.org/TR/2018/WD-dx-prof-20181218/", 77 | title: "Profile Descriptions ontology", 78 | date: "2018-12-18", 79 | status: "W3C First Public Working Draft" 80 | }, 81 | "vocab-dcat-2": { 82 | editors: [ 83 | "Alejandra Gonzalez Beltran", 84 | "Dave Browning", 85 | "Simon Cox", 86 | "Peter Winstanley" 87 | ], 88 | href: "https://www.w3.org/TR/vocab-dcat-2/", 89 | title: "Data Catalog Vocabulary (DCAT) - revised edition", 90 | date: "2018-09-07", 91 | status: "W3C Editor's Draft" 92 | } 93 | } 94 | }; 95 | -------------------------------------------------------------------------------- /profiles/figures.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/dxwg/6d6a954f2ccd085447adf5e02303d8535a6ea722/profiles/figures.pptx -------------------------------------------------------------------------------- /profiles/figures/fig-multiple-base-spec.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | Produced by OmniGraffle 7.10.2 17 | 2019-02-18 21:57:37 +0000 18 | 19 | 20 | Canvas 1 21 | 22 | 23 | Layer 1 24 | 25 | 26 | 27 | 28 | Dublin Core Metadata 29 | Initiative Metadata Terms 30 | 31 | 32 | 33 | 34 | 35 | 36 | Open Archives Initiative 37 | Object Reuse and Exchange 38 | 39 | 40 | 41 | 42 | 43 | 44 | Europeana Data Model 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /ucr/README.md: -------------------------------------------------------------------------------- 1 | The rendered version of this may be found at https://w3c.github.io/dxwg/ucr/ 2 | -------------------------------------------------------------------------------- /ucr/dxwg.css: -------------------------------------------------------------------------------- 1 | /* https://www.w3.org/TR/sdw-ucr/localstyles.css */ 2 | .contributor:before { 3 | content: "Contributed by: "; 4 | font-weight: bold; 5 | } 6 | 7 | .source:before { 8 | content: "Source: "; 9 | font-weight: bold; 10 | } 11 | 12 | .deliverables:before { 13 | content: "Deliverable(s): "; 14 | font-weight: bold; 15 | } 16 | /* CSS based largly on SDWWG template */ 17 | 18 | /* Hide deliverables for the moment, filter by tags*/ 19 | .deliverables{ 20 | display: none; 21 | } 22 | 23 | .tag, .switch{ 24 | display: inline-block; 25 | margin-right: 0.5em; 26 | font: bold 1em Arial; 27 | text-decoration: none; 28 | background-color: #f2f2f2;/*#eeeeee;*/ 29 | color: #333333; 30 | padding: 3px 8px 3px 8px; 31 | border-radius: 5px; 32 | } 33 | 34 | .tag{ 35 | border: 2px solid; 36 | } 37 | 38 | .switch{ 39 | box-shadow: 0px 5px 0px #ababab; 40 | } 41 | 42 | .switch:hover { 43 | 44 | } 45 | 46 | .switch.deliverable_reference{ 47 | } 48 | 49 | /* For "press style buttons" see http://callmenick.com/_development/stylish-css-buttons/ */ 50 | .switch.checked { 51 | /*color: #406041;*/ 52 | background-color: #cdcdcd;/*#b3d6b4;*/ 53 | box-shadow: 0 2px #ababab; 54 | transform: translateY(3px); 55 | } 56 | 57 | .filter{ 58 | display: inline-block; 59 | margin-bottom: 0.7em; 60 | } 61 | 62 | .filterGroup{ 63 | padding: 0.5em; 64 | padding-left: 1em; 65 | /*margin: 0.5em;*/ 66 | } 67 | 68 | #deliverableFilter{ 69 | background-color: #ccebff; 70 | border-radius: 5px 5px 0px 0px; 71 | } 72 | 73 | #resourceFilter{ 74 | background-color: #deedde; 75 | } 76 | 77 | #aspectFilter{ 78 | background-color: #ffeecc; 79 | } 80 | 81 | #metaFilter{ 82 | background-color: #e9e9e9; 83 | border-radius: 0px 0px 5px 5px; 84 | } 85 | 86 | 87 | 88 | .tags:before { 89 | content: "Tags: "; 90 | font-weight: bold; 91 | } 92 | 93 | p.tags:empty:after { 94 | content: 'no tags'; 95 | } 96 | 97 | .filterControl{ 98 | padding-bottom: 10px; 99 | } 100 | 101 | .dxwgButton{ 102 | padding: 5px 20px 5px 20px; 103 | border-radius: 5px; 104 | } 105 | 106 | .applyFilterButton{ 107 | 108 | } 109 | 110 | .resetFilterButton{ 111 | 112 | } 113 | 114 | .stakeholders:before { 115 | content: "Stakeholders: "; 116 | font-weight: bold; 117 | } 118 | 119 | .description:before { 120 | display: block; 121 | content: "Description"; 122 | font-weight: bold; 123 | } 124 | 125 | .existing_approaches:before { 126 | display: block; 127 | content: "Existing approaches"; 128 | font-weight: bold; 129 | } 130 | 131 | .links:before { 132 | content: "Links"; 133 | font-weight: bold; 134 | } 135 | 136 | .related_use_cases:before { 137 | content: "Related use cases"; 138 | font-weight: bold; 139 | } 140 | 141 | .comments:before { 142 | content: "Comments"; 143 | font-weight: bold; 144 | } 145 | 146 | .requirements:before { 147 | content: "Requirements"; 148 | font-weight: bold; 149 | } 150 | 151 | .relatedDeliverables:before { 152 | content: "Related deliverables: "; 153 | font-weight: bold; 154 | } 155 | .relatedRequirements:before { 156 | content: "Related requirements: "; 157 | font-weight: bold; 158 | } 159 | .relatedUseCases:before { 160 | content: "Related use cases: "; 161 | font-weight: bold; 162 | } 163 | .hidden { 164 | display: none; 165 | } 166 | .visible { 167 | display: block; 168 | } 169 | .toggleVis { 170 | text-decoration: none; 171 | font-weight: bold; 172 | } 173 | .expandOrCollapse { 174 | font-weight: bold; 175 | } 176 | 177 | a.sec-ref:after{ 178 | content: "\02002"; 179 | } 180 | -------------------------------------------------------------------------------- /ucr/static/dxwg.css: -------------------------------------------------------------------------------- 1 | /* https://www.w3.org/TR/sdw-ucr/localstyles.css */ 2 | .contributor:before { 3 | content: "Contributed by: "; 4 | font-weight: bold; 5 | } 6 | 7 | .source:before { 8 | content: "Source: "; 9 | font-weight: bold; 10 | } 11 | 12 | .deliverables:before { 13 | content: "Deliverable(s): "; 14 | font-weight: bold; 15 | } 16 | /* CSS based largly on SDWWG template */ 17 | 18 | /* Hide deliverables for the moment, filter by tags*/ 19 | .deliverables{ 20 | display: none; 21 | } 22 | 23 | .tag, .switch{ 24 | display: inline-block; 25 | margin-right: 0.5em; 26 | font: bold 1em Arial; 27 | text-decoration: none; 28 | background-color: #f2f2f2;/*#eeeeee;*/ 29 | color: #333333; 30 | padding: 3px 8px 3px 8px; 31 | border-radius: 5px; 32 | } 33 | 34 | .tag{ 35 | border: 2px solid; 36 | } 37 | 38 | .switch{ 39 | box-shadow: 0px 5px 0px #ababab; 40 | } 41 | 42 | .switch:hover { 43 | 44 | } 45 | 46 | .switch.deliverable_reference{ 47 | } 48 | 49 | /* For "press style buttons" see http://callmenick.com/_development/stylish-css-buttons/ */ 50 | .switch.checked { 51 | /*color: #406041;*/ 52 | background-color: #cdcdcd;/*#b3d6b4;*/ 53 | box-shadow: 0 2px #ababab; 54 | transform: translateY(3px); 55 | } 56 | 57 | .filter{ 58 | display: inline-block; 59 | margin-bottom: 0.7em; 60 | } 61 | 62 | .filterGroup{ 63 | padding: 0.5em; 64 | padding-left: 1em; 65 | /*margin: 0.5em;*/ 66 | } 67 | 68 | #deliverableFilter{ 69 | background-color: #ccebff; 70 | border-radius: 5px 5px 0px 0px; 71 | } 72 | 73 | #resourceFilter{ 74 | background-color: #deedde; 75 | } 76 | 77 | #aspectFilter{ 78 | background-color: #ffeecc; 79 | } 80 | 81 | #metaFilter{ 82 | background-color: #e9e9e9; 83 | border-radius: 0px 0px 5px 5px; 84 | } 85 | 86 | 87 | 88 | .tags:before { 89 | content: "Tags: "; 90 | font-weight: bold; 91 | } 92 | 93 | p.tags:empty:after { 94 | content: 'no tags'; 95 | } 96 | 97 | .filterControl{ 98 | padding-bottom: 10px; 99 | } 100 | 101 | .dxwgButton{ 102 | padding: 5px 20px 5px 20px; 103 | border-radius: 5px; 104 | } 105 | 106 | .applyFilterButton{ 107 | 108 | } 109 | 110 | .resetFilterButton{ 111 | 112 | } 113 | 114 | .stakeholders:before { 115 | content: "Stakeholders: "; 116 | font-weight: bold; 117 | } 118 | 119 | .description:before { 120 | display: block; 121 | content: "Description"; 122 | font-weight: bold; 123 | } 124 | 125 | .existing_approaches:before { 126 | display: block; 127 | content: "Existing approaches"; 128 | font-weight: bold; 129 | } 130 | 131 | .links:before { 132 | content: "Links"; 133 | font-weight: bold; 134 | } 135 | 136 | .related_use_cases:before { 137 | content: "Related use cases"; 138 | font-weight: bold; 139 | } 140 | 141 | .comments:before { 142 | content: "Comments"; 143 | font-weight: bold; 144 | } 145 | 146 | .requirements:before { 147 | content: "Requirements"; 148 | font-weight: bold; 149 | } 150 | 151 | .relatedDeliverables:before { 152 | content: "Related deliverables: "; 153 | font-weight: bold; 154 | } 155 | .relatedRequirements:before { 156 | content: "Related requirements: "; 157 | font-weight: bold; 158 | } 159 | .relatedUseCases:before { 160 | content: "Related use cases: "; 161 | font-weight: bold; 162 | } 163 | .hidden { 164 | display: none; 165 | } 166 | .visible { 167 | display: block; 168 | } 169 | .toggleVis { 170 | text-decoration: none; 171 | font-weight: bold; 172 | } 173 | .expandOrCollapse { 174 | font-weight: bold; 175 | } 176 | 177 | a.sec-ref:after{ 178 | content: "\02002"; 179 | } 180 | -------------------------------------------------------------------------------- /utils/req2issue/README.md: -------------------------------------------------------------------------------- 1 | # Task 2 | - port UCR requirements to GitHub issues preserving (most) of stucture to allow re-import 3 | 4 | # Tests 5 | - GET sample issue (JSON): https://api.github.com/repos/w3c/dxwg/issues/50 6 | - POST issue: curl -u --header "Content-Type:application/json" --data @issue.json https://api.github.com/repos/w3c/dxwg/issues 7 | - confirm display and persistence of rich HTML markup via minimal issue structure 8 | 9 | ``` 10 | { 11 | "title": "Dummy issue [RDMY]", 12 | "body": "

Dummy issue [RDMY]

...
", 13 | "labels": [ "content_negotiation", "profile","out_of_scope"] 14 | } 15 | ``` 16 | # Conversion 17 | - remove line breaks: multiline content not allowed in JSON ("body" element) 18 | - replace double-quotes with single quotes (mistaken for string delimiter) 19 | - turn [id] within the header into UCR-document link: ...#id, target="_blank" 20 | - include header to "relatedRequirements": Related requirements 21 | - turn "relatedRequirements" links into UCR-document requirement link: ...#rid, target="_blank" 22 | - include header to "relatedUseCases": Related use cases 23 | - turn "relatedUseCases" links into UCR-document links: ...#id, target="_blank" 24 | - write each requirement into a separate file via xsl:result-document 25 | - collect, merge and serialize labels 26 | - check for json conformance via jsonlint-py 27 | - upload each via POST to https://api.github.com/repos/w3c/dxwg/issues/ 28 | 29 | # Resources 30 | - https://github.com/w3c/dxwg/issues 31 | - https://api.github.com/repos/w3c/dxwg/issues 32 | - https://developer.github.com/v3/#authentication 33 | - https://www.w3.org/TR/xslt-30/ 34 | - https://www.saxonica.com/download/java.xml 35 | 36 | -------------------------------------------------------------------------------- /utils/req2issue/req2issue.xslt: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | " 10 | ' 11 | 12 | 13 | 14 | 15 | 16 | { 17 | "title": "", 18 | "body": "", 19 | "labels": ["requirement","",] 20 | } 21 | 22 | 23 |

[]

24 | 25 | 26 | 27 | 28 |

Related requirements:
29 |

Related use cases:
30 |   31 |   32 | 33 | 34 | 35 | 36 |
37 | 38 | -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- 1 | { 2 | "group": 99375, 3 | "contacts": [ 4 | "plehegar" 5 | ], 6 | "policy": "open", 7 | "repo-type": "rec-track" 8 | } --------------------------------------------------------------------------------