ontology:documentation leaf node


URI

http://omv.ontoware.org/2005/05/ontology#documentation

Label

documentation

Description

URL for further documentation

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) ontology:documentation xsd:string

Implementation

@prefix : <http://omv.ontoware.org/2005/05/ontology#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:documentation a owl:DatatypeProperty ;
    rdfs:label "documentation"^^xsd:string ;
    rdfs:comment "URL for further documentation"^^xsd:string ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( :KnowledgeRepresentationParadigm :LicenseModel :Ontology :OntologyEngineeringMethodology :OntologyEngineeringTool :OntologyLanguage :OntologySyntax :OntologyTask :OntologyType ) ] ;
    rdfs:range xsd:string .