@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 cp: <http://www.w3.org/2015/03/inspire/cp#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix gsp: <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/au> a owl:Ontology;
  dcterms:title "SmOD Cadastral Parcels Vocabulary"@en;
  dcterms:description "This Vocabulary represents in RDF the part of the INSPIRE Cadastral Parcels Theme that was included in the data model developed under the Smart Open Data project http://www.smartopendata.eu/."@en;
  vann:preferredNamespaceUri "http://www.w3.org/2015/03/inspire/cp#";
  vann:preferredNamespacePrefix "cp";
  foaf:homepage <http://www.w3.org/2015/03/inspire/cp.html>;
  dcterms:created "2015-08-19"^^xsd:date;
  dcterms:modified "2015-11-13"^^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/> .

cp:CadastralParcel a rdfs:Class, owl:Class;
  rdfs:label "Cadastral Parcel"@en;
  rdfs:comment "Areas defined by cadastral registers or equivalent."@en;
  rdfs:subClassOf gsp:SpatialObject ;
  rdfs:isDefinedBy <http://www.w3.org/2015/03/inspire/cp> .

cp:nationalCadastralReference a rdf:Property, owl:DatatypeProperty;
  rdfs:label "national cadastral reference"@en;
  rdfs:comment "Thematic identifier at national level, generally the full national code of the basic property unit. Must ensure the link to the national cadastral register or equivalent."@en;
  rdfs:domain cp:CadastralParcel;
  rdfs:range xsd:string;
  rdfs:subPropertyOf skos:notation ;
  rdfs:isDefinedBy <http://www.w3.org/2015/03/inspire/cp> .

