ns1:hasWork leaf node


URI

http://scigraph.springernature.com/ontologies/core/hasWork

Label

Property: has work

Description

The :hasWork property relates a product to an abstract work from which it derives, or which contains it.

Usage

DOMAINPROPERTYRANGE
ns1:Product ns1:hasWork ns1:Work

Implementation

@prefix ns1: <http://scigraph.springernature.com/ontologies/core/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

ns1:hasWork a owl:ObjectProperty ;
    rdfs:label "Property: has work"@en ;
    rdfs:comment "The :hasWork property relates a product to an abstract work from which it derives, or which contains it."@en ;
    rdfs:domain ns1:Product ;
    rdfs:isDefinedBy ns1: ;
    rdfs:range ns1:Work .