naval:nextShip leaf node


URI

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

Label

Next instance of this ship

Description

Use this to link Queen Marie 1 to Queen Marie 2, etc...

Usage

DOMAINPROPERTYRANGE
naval:Ship naval:nextShip naval:Ship

Implementation

@prefix : <http://rdf.muninn-project.org/ontologies/naval#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@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#> .

:nextShip a owl:ObjectProperty,
        skos:Concept ;
    rdfs:label "Weiter Instanz dieses Schiff"@de,
        "Next instance of this ship"@en,
        "Instance suivante de ce navire"@fr ;
    void:inDataset :datasetdefinition ;
    rdfs:domain :Ship ;
    rdfs:isDefinedBy naval: ;
    rdfs:range :Ship ;
    skos:definition "Use this to link Queen Marie 1 to Queen Marie 2, etc..."@en ;
    foaf:name "Next Ship" .