forked from CivityNL/ckanext-fairdatapoint
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "feat(feat) Revert multiple contact points"
This reverts commit cd80c80.
- Loading branch information
Hans-Chrstian
committed
Aug 14, 2024
1 parent
cd80c80
commit a0291a4
Showing
6 changed files
with
925 additions
and
777 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
ckanext/fairdatapoint/tests/test_data/contact_point_multiple_cards.ttl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# SPDX-FileCopyrightText: 2024 Stichting Health-RI | ||
# | ||
# SPDX-License-Identifier: AGPL-3.0-only | ||
|
||
@prefix dcterms: <http://purl.org/dc/terms/> . | ||
@prefix dcat: <http://www.w3.org/ns/dcat#> . | ||
@prefix foaf: <http://xmlns.com/foaf/0.1/> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
@prefix ldp: <http://www.w3.org/ns/ldp#> . | ||
@prefix v: <http://www.w3.org/2006/vcard/ns#> . | ||
|
||
<https://health-ri.sandbox.semlab-leiden.nl/dataset/d7129d28-b72a-437f-8db0-4f0258dd3c25> | ||
a dcat:Resource, dcat:Dataset; | ||
<http://www.w3.org/2000/01/rdf-schema#label> "Example"; | ||
dcterms:title "Example"; | ||
<https://w3id.org/fdp/fdp-o#metadataIssued> "2023-09-05T12:00:36.276171042Z"^^xsd:dateTime; | ||
<https://w3id.org/fdp/fdp-o#metadataModified> "2024-05-02T13:01:35.716385359Z"^^xsd:dateTime; | ||
dcterms:license <http://rdflicense.appspot.com/rdflicense/cc-by-nc-nd3.0>; | ||
dcterms:description "This is an example description."; | ||
dcat:contactPoint [ a v:VCard ; | ||
v:fn "Marc Bonten" ; | ||
v:hasUID <https://orcid.org/0000-0002-9095-9201> ; | ||
v:hasEmail <mailto:marc.bonten@example.com> ] , | ||
[ a v:VCard ; | ||
v:fn "Frits Rosendaal" ; | ||
v:hasUID <https://orcid.org/0000-0003-2558-7496> ; | ||
v:hasEmail <mailto:frits.rosendaal@example.com> ] . |
19 changes: 19 additions & 0 deletions
19
ckanext/fairdatapoint/tests/test_data/contact_point_multiple_urls.ttl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# SPDX-FileCopyrightText: 2024 Stichting Health-RI | ||
# | ||
# SPDX-License-Identifier: AGPL-3.0-only | ||
|
||
@prefix dcterms: <http://purl.org/dc/terms/> . | ||
@prefix dcat: <http://www.w3.org/ns/dcat#> . | ||
@prefix foaf: <http://xmlns.com/foaf/0.1/> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
@prefix ldp: <http://www.w3.org/ns/ldp#> . | ||
|
||
<https://health-ri.sandbox.semlab-leiden.nl/dataset/d7129d28-b72a-437f-8db0-4f0258dd3c25> | ||
a dcat:Resource, dcat:Dataset; | ||
<http://www.w3.org/2000/01/rdf-schema#label> "Example"; | ||
dcterms:title "Example"; | ||
<https://w3id.org/fdp/fdp-o#metadataIssued> "2023-09-05T12:00:36.276171042Z"^^xsd:dateTime; | ||
<https://w3id.org/fdp/fdp-o#metadataModified> "2024-05-02T13:01:35.716385359Z"^^xsd:dateTime; | ||
dcterms:license <http://rdflicense.appspot.com/rdflicense/cc-by-nc-nd3.0>; | ||
dcterms:description "This is an example description."; | ||
dcat:contactPoint <https://orcid.org/0000-0002-9095-9201>, <https://orcid.org/0000-0003-2558-7496> . |
Oops, something went wrong.