schema1:fundedItem leaf node


URI

http://schema.org/fundedItem

Label

fundedItem

Description

Indicates an item funded or sponsored through a [[Grant]].

Usage

DOMAINPROPERTYRANGE
schema1:Grant schema1:fundedItem schema1:CreativeWork , schema1:Organization , schema1:Person

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:fundedItem a rdf:Property ;
    rdfs:label "fundedItem" ;
    schema1:domainIncludes schema1:Grant ;
    schema1:rangeIncludes schema1:CreativeWork,
        schema1:Organization,
        schema1:Person ;
    rdfs:comment "Indicates an item funded or sponsored through a [[Grant]]." .