ns1:hasProduct leaf node


URI

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

Label

Property: has product

Description

The :hasProduct property relates an abstract work to the product which realizes it.

Usage

DOMAINPROPERTYRANGE
ns1:Work ns1:hasProduct ns1:Product

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:hasProduct a owl:ObjectProperty ;
    rdfs:label "Property: has product"@en ;
    rdfs:comment "The :hasProduct property relates an abstract work to the product which realizes it."@en ;
    rdfs:domain ns1:Work ;
    rdfs:isDefinedBy ns1: ;
    rdfs:range ns1:Product .