schema1:funder leaf node


URI

http://schema.org/funder

Label

funder

Description

A person or organization that supports a thing through a pledge, promise, or financial contribution. e.g. a sponsor of a Medical Study or a corporate sponsor of an event. - A person or organization that supports (sponsors) something through some kind of financial contribution.

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:funder a rdf:Property ;
    rdfs:label "funder" ;
    schema1:domainIncludes schema1:CreativeWork,
        schema1:MonetaryGrant,
        schema1:Organization ;
    schema1:rangeIncludes schema1:Organization,
        schema1:Person ;
    rdfs:comment "A person or organization that supports (sponsors) something through some kind of financial contribution.",
        "A person or organization that supports a thing through a pledge, promise, or financial contribution. e.g. a sponsor of a Medical Study or a corporate sponsor of an event." .