:isStoredOn leaf node


URI

http://purl.org/spar/fabio/isStoredOn

Label

is stored on

Description

This property relates a fabio:Item to the medium upon which it is stored.

Inherits from

Usage

DOMAINPROPERTYRANGE
:Item :isStoredOn :StorageMedium

Implementation

@prefix : <http://purl.org/spar/fabio/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

:isStoredOn a owl:ObjectProperty ;
    rdfs:label "is stored on"@en ;
    rdfs:comment "This property relates a fabio:Item to the medium upon which it is stored."@en ;
    rdfs:domain :Item ;
    rdfs:range :StorageMedium ;
    rdfs:subPropertyOf owl:topObjectProperty .