@prefix dbo:     <http://dbpedia.org/ontology/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix schema: <http://schema.org/> .
@prefix form: <http://raw.githubusercontent.com/jmvanel/semantic_forms/master/vocabulary/forms.owl.ttl#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix dct:     <http://purl.org/dc/terms/> .
@prefix dbpedia: <http://dbpedia.org/resource/> .
@prefix event: <http://purl.org/NET/c4dm/event.owl#> .
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>.

@prefix :       <http://deductions.github.io/nature_observation.owl.ttl#> .
@prefix nature: <http://deductions.github.io/nature_observation.owl.ttl#> .

: a owl:Ontology ;
	rdfs:label "Observations naturalistes, botaniques ou zoologiques"@fr ;
	rdfs:label "Nature Observations, botanical or zoological"@en ;
	foaf:maker <http://jmvanel.free.fr/jmv.rdf#me> ;
	dct:subject dbpedia:Natural_history , dbpedia:Observation .

:Observation a owl:Class ;
	rdfs:subClassOf event:Product ;
	rdfs:label "Observation"@fr ;
	rdfs:label "Observation"@en ;
	form:labelProperty :taxon .

@base <https://deductions.github.io> .
:Observation foaf:img <pest-observation.svg> .

:taxon a owl:ObjectProperty ;
	rdfs:label "taxon"@fr ;
	rdfs:label "taxon"@en ;
	rdfs:domain :Observation ;
	rdfs:range dbo:Species .

:observation a owl:ObjectProperty ;
	rdfs:label "observation naturaliste"@fr ;
	rdfs:label "nature observation"@en ;
	rdfs:comment """permet d'associer une observation à une transplantation, un article publié, etc."""@fr ;
	rdfs:range nature:Observation .




