Skip to content

Instantly share code, notes, and snippets.

@PARODBE
Created April 29, 2025 09:32
Show Gist options
  • Save PARODBE/4705cdabe70dbd2f907f1e56bc5cd4bf to your computer and use it in GitHub Desktop.
Save PARODBE/4705cdabe70dbd2f907f1e56bc5cd4bf to your computer and use it in GitHub Desktop.
content.rttl
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
<https://example.org/catalog>
a dcat:Catalog ;
dct:title "Imaging Biomarkers Catalog" ;
dct:description "Catalog of imaging biomarkers including ADC, following DCAT-AP 3.0.0." ;
dct:language [
a dct:LinguisticSystem ;
dct:identifier <http://publications.europa.eu/resource/authority/language/ENG>
] ;
dct:issued "2024-04-28"^^xsd:date ;
dct:modified "2024-04-28"^^xsd:date ;
dct:publisher <https://example.org/organization/your-institution> ;
dcat:themeTaxonomy <http://publications.europa.eu/resource/authority/data-theme> ;
dcat:dataset <https://example.org/dataset/adc> ;
foaf:homepage [
a foaf:Document ;
foaf:homepage <https://example.org>
] ;
dct:spatial [
a dct:Location ;
dct:identifier <http://publications.europa.eu/resource/authority/country/EU>
] .
<https://example.org/dataset/adc>
a dcat:Dataset ;
dct:title "ADC (Apparent Diffusion Coefficient)" ;
dct:description "Quantitative imaging biomarker measuring the diffusion of water molecules using diffusion-weighted MRI." ;
dct:subject "Brain" ;
dcat:theme <http://publications.europa.eu/resource/authority/data-theme/HEALTH#concept> ;
dcat:keyword "diffusion", "stroke", "MRI" ;
dct:provenance <https://example.org/provenance/adc-evidence> ;
dct:conformsTo <https://example.org/standard/stroke-guidelines> ;
dct:spatial [
a dct:Location ;
dct:identifier <http://publications.europa.eu/resource/authority/country/EU>
] ;
dct:temporal <https://example.org/temporal/adc-period> ;
dct:publisher <https://example.org/organization/your-institution> ;
dct:license [
a dct:LicenseDocument ;
dct:identifier <https://creativecommons.org/licenses/by/4.0/>
] ;
dcat:distribution <https://example.org/distribution/adc-csv> ;
dct:type <http://purl.org/adms/AssetType/Dataset> ;
dcat:contactPoint <https://example.org/contact/data-owner> .
<https://example.org/distribution/adc-csv>
a dcat:Distribution ;
dct:format [
a dct:MediaTypeOrExtent ;
dct:identifier "text/csv"
] ;
dct:description "CSV file with ADC biomarker metadata." ;
dcat:accessURL <https://example.org/files/adc.csv> ;
dct:license [
a dct:LicenseDocument ;
dct:identifier <https://creativecommons.org/licenses/by/4.0/>
] .
<https://example.org/provenance/adc-evidence>
a dct:ProvenanceStatement ;
dct:description "Scientific evidence Level 1 based on Ebisu 1993 (DOI: 10.1016/0730-725X(95)02020-6) and Baird 1997 (DOI: 10.1002/ana.410410603)." .
<https://example.org/standard/stroke-guidelines>
a dct:Standard ;
dct:title "AHA/ASA Stroke Guidelines 2019" ;
dct:identifier <https://www.ahajournals.org/doi/full/10.1161/STR.0000000000000211> .
<https://example.org/temporal/adc-period>
a dct:PeriodOfTime ;
dcat:startDate "1993-01-01"^^xsd:date ;
dcat:endDate "2025-12-31"^^xsd:date .
<https://example.org/organization/your-institution>
a foaf:Agent ;
foaf:name "Your Institution Name" .
<https://example.org/contact/data-owner>
a vcard:Kind ;
vcard:fn "Data Owner" ;
vcard:hasEmail <mailto:[email protected]> .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment