schema1:hasPart leaf node


URI

http://schema.org/hasPart

Label

hasPart

Description

Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense).

Usage

DOMAINPROPERTYRANGE
schema1:CreativeWork schema1:hasPart schema1:CreativeWork

Implementation

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema1: <http://schema.org/> .

schema1:hasPart a rdf:Property ;
    rdfs:label "hasPart" ;
    schema1:domainIncludes schema1:CreativeWork ;
    schema1:rangeIncludes schema1:CreativeWork ;
    rdfs:comment "Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense)." .