naval:hasHeight leaf node


URI

http://rdf.muninn-project.org/ontologies/naval#hasHeight

Label

Height of Ship or Hull

Description

Height of ship.

Usage

DOMAINPROPERTYRANGE
naval:Ship , naval:ShipClass , naval:Hull naval:hasHeight owl:Thing (inferred)

Implementation

@prefix : <http://rdf.muninn-project.org/ontologies/naval#> .
@prefix naval: <http://rdf.muninn-project.org/ontologies/naval> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix void: <http://rdfs.org/ns/void#> .

:hasHeight a owl:DatatypeProperty,
        skos:Concept ;
    rdfs:label ""@de,
        "Height of Ship or Hull"@en,
        ""@fr ;
    void:inDataset :datasetdefinition ;
    rdfs:domain :Hull,
        :Ship,
        :ShipClass ;
    rdfs:isDefinedBy naval: ;
    skos:definition "Height of ship."@en .