@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix sd: <http://www.w3.org/2015/03/inspire/sd#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix geo: <http://www.opengis.net/ont/geosparql#> .
@prefix skos: <http://www.w3.org/2008/05/skos#> .
@prefix cc: <http://creativecommons.org/ns#> .

<http://www.w3.org/2015/03/inspire/sd> a owl:Ontology;
    dcterms:title "SmOD Species Distribution Vocabulary"@en;
    dcterms:description "This Vocabulary represents in RDF the part of the INSPIRE Species Distribution Model that was included in the data model developed under the Smart Open Data project http://www.smartopendata.eu/."@en;
    dcterms:modified "2015-04-30"^^xsd:date;
    dcterms:modified "2015-05-07"^^xsd:date;
    vann:preferredNamespaceUri "http://www.w3.org/2015/03/inspire/sd#";
    vann:preferredNamespacePrefix "sd";
    foaf:homepage <http://www.w3.org/2015/03/inspire/sd.html>;
    dcterms:created "2015-04-27"^^xsd:date;
    dcterms:publisher [foaf:homepage <http://www.smartopendata.eu>; foaf:name "SmartOpenData project"] ;
    dcterms:partOf <http://www.w3.org/2015/03/inspire/>;
    dcterms:type <http://purl.org/adms/assettype/Ontology>;
    dcterms:status <http://purl.org/adms/status/UnderDevelopment>;
    dcterms:creator <http://philarcher.org/foaf.rdf#me>, <http://mynarz.net/#jindrich>, [foaf:PersonalProfileDocument <https://www.linkedin.com/in/tatianatarasova>] ;
    cc:license <https://creativecommons.org/publicdomain/zero/1.0/> .

sd:SpeciesDistributionUnit a rdfs:Class, owl:Class;
    rdfs:label "Species distribution unit"@en;
    rdfs:comment "This class represents occurrence of animal and plant species aggregated by grid, region, administrative unit or other analytical unit."@en;
    rdfs:subClassOf geo:SpatialObject ;
    rdfs:isDefinedBy <http://www.w3.org/2015/03/inspire/sd> .

sd:Species a rdfs:Class, owl:Class;
    rdfs:label "Species"@en;
    rdfs:comment "This class represents any species of interest (this is equivalent to the INSPIRE Species Name Type)."@en ;
    rdfs:isDefinedBy <http://www.w3.org/2015/03/inspire/sd> .

sd:hasSpecies a rdf:Property;
    rdfs:label "has species"@en;
    rdfs:comment "This property links the class of Species Distribution Unit to the class that represents any species of interest."@en;
    rdfs:domain sd:SpeciesDistributionUnit;
    rdfs:range sd:Species ;
    rdfs:isDefinedBy <http://www.w3.org/2015/03/inspire/sd> .

sd:eunisSpeciesCode a rdf:Property;
    rdfs:label "eunis species code"@en;
    rdfs:comment "This property links the Species to the reference lists containing the European Nature Information System (EUNIS) species id's maintained by the European Environmental Agency."@en;
    rdfs:domain sd:Species ;
    rdfs:range <http://eunis.eea.europa.eu/rdf/species-schema.rdf#SpeciesSynonym> ;
    rdfs:isDefinedBy <http://www.w3.org/2015/03/inspire/sd> .

sd:occurenceCategory a rdf:Property;
    rdfs:label "occurence category"@en;
    rdfs:comment "This property specifies the species population density in the Species Distribution Unit using values of the INSPIRE scheme of Occurrence Category Value http://inspire.ec.europa.eu/codelist/OccurrenceCategoryValue/"@en;
    rdfs:domain sd:Species;
    rdfs:range skos:Concept ;
    rdfs:isDefinedBy <http://www.w3.org/2015/03/inspire/sd> .

sd:eunomenID a rdf:Property, owl:DatatypeProperty;
    rdfs:label "eunomen ID"@en;
    rdfs:comment "This property links a species to its literal Fauna Europeana identifier, see http://www.eu-nomen.eu/"@en;
    rdfs:domain sd:Species;
    rdfs:range rdfs:Literal;
    rdfs:subPropertyOf skos:notation, <http://eunis.eea.europa.eu/rdf/species-schema.rdf#sameSynonymFaEu> ;
    rdfs:isDefinedBy <http://www.w3.org/2015/03/inspire/sd> .