schema:fundedItem leaf node


URI

http://schema.org/fundedItem

Label

fundedItem

Description

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

Usage

DOMAINPROPERTYRANGE
schema:Grant schema:fundedItem schema:CreativeWork , schema:Organization , schema: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 schema: <http://schema.org/> .

schema:fundedItem a rdf:Property ;
    rdfs:label "fundedItem" ;
    schema:domainIncludes schema:Grant ;
    schema:rangeIncludes schema:CreativeWork,
        schema:Organization,
        schema:Person ;
    rdfs:comment "Indicates an item funded or sponsored through a [[Grant]]." .