schema:funder leaf node


URI

http://schema.org/funder

Label

funder

Description

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.

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:funder a rdf:Property ;
    rdfs:label "funder" ;
    schema:domainIncludes schema:CreativeWork,
        schema:MonetaryGrant,
        schema:Organization ;
    schema:rangeIncludes schema:Organization,
        schema: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." .