schema: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
schema:CreativeWork schema:hasPart schema: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 schema: <http://schema.org/> .

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