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

<https://blackcatinformatics.ca/gmeow> a dcat:Dataset ;
    dcterms:hasVersion "0.1.0" ;
    dcterms:license <https://creativecommons.org/licenses/by/4.0/> ;
    dcterms:publisher <https://blackcatinformatics.ca/#bii> ;
    dcterms:title "GMEOW"@en ;
    dcat:distribution <https://blackcatinformatics.ca/gmeow#dist-jsonld>,
        <https://blackcatinformatics.ca/gmeow#dist-nt>,
        <https://blackcatinformatics.ca/gmeow#dist-rdf>,
        <https://blackcatinformatics.ca/gmeow#dist-ttl> ;
    dcat:landingPage <https://blackcatinformatics.ca/gmeow> .

<https://blackcatinformatics.ca/gmeow#dist-jsonld> a dcat:Distribution ;
    dcat:downloadURL <https://blackcatinformatics.ca/gmeow.jsonld> ;
    dcat:mediaType "application/ld+json"^^xsd:string .

<https://blackcatinformatics.ca/gmeow#dist-nt> a dcat:Distribution ;
    dcat:downloadURL <https://blackcatinformatics.ca/gmeow.nt> ;
    dcat:mediaType "application/n-triples"^^xsd:string .

<https://blackcatinformatics.ca/gmeow#dist-rdf> a dcat:Distribution ;
    dcat:downloadURL <https://blackcatinformatics.ca/gmeow.rdf> ;
    dcat:mediaType "application/rdf+xml"^^xsd:string .

<https://blackcatinformatics.ca/gmeow#dist-ttl> a dcat:Distribution ;
    dcat:downloadURL <https://blackcatinformatics.ca/gmeow.ttl> ;
    dcat:mediaType "text/turtle"^^xsd:string .

