Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<> a dcat:Dataset ;
    dct:identifier "BS001" ;
    dct:title "Blood Sample" ;
    dct:description "Metadata for a blood sample" ;
    dct:issued "2024-01-15T08:30:00"^^xsd:dateTime ;
    dct:publisher "Lab Technician, Sarah Lee" ;
    dct:subject "Hypertension" ;
    dcat:landingPage "https://example.com/blood_sample" ;
    dcat:accessRights "Informed consent obtained" ;
    dcat:theme "Health" ;
    dcat:keyword "Blood sample", "Hypertension", "CBC", "Lipid Panel", "Glucose Test" ;
    dcat:temporal "2024-01-15T08:30:00/2024-01-15T10:00:00"^^xsd:dateTime ;
    dcat:hasVersion "1.0" ;
    dcat:conformsTo <https://eurl.link/dcat-ap> .

...