Files
marka/registry/schema-org/Grant.schema.json
Max Richter c687eff53d big tings
2025-08-17 15:16:17 +02:00

86 lines
3.3 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:Grant",
"title": "Grant",
"description": "A grant, typically financial or otherwise quantifiable, of resources. Typically a [[funder]] sponsors some [[MonetaryAmount]] to an [[Organization]] or [[Person]],\n sometimes not necessarily via a dedicated or long-lived [[Project]], resulting in one or more outputs, or [[fundedItem]]s. For financial sponsorship, indicate the [[funder]] of a [[MonetaryGrant]]. For non-financial support, indicate [[sponsor]] of [[Grant]]s of resources (e.g. office space).\n\nGrants support activities directed towards some agreed collective goals, often but not always organized as [[Project]]s. Long-lived projects are sometimes sponsored by a variety of grants over time, but it is also common for a project to be associated with a single grant.\n\nThe amount of a [[Grant]] is represented using [[amount]] as a [[MonetaryAmount]].\n ",
"type": "object",
"allOf": [
{
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.",
"$ref": "schema:Intangible"
}
],
"properties": {
"fundedItem": {
"description": "Indicates something directly or indirectly funded or sponsored through a [[Grant]]. See also [[ownershipFundingInfo]].",
"oneOf": [
{
"anyOf": [
{ "$ref": "schema:BioChemEntity" },
{ "$ref": "schema:CreativeWork" },
{ "$ref": "schema:Event" },
{ "$ref": "schema:MedicalEntity" },
{ "$ref": "schema:Organization" },
{ "$ref": "schema:Person" },
{ "$ref": "schema:Product" }
]
},
{
"type": "array",
"items": {
"anyOf": [
{ "$ref": "schema:BioChemEntity" },
{ "$ref": "schema:CreativeWork" },
{ "$ref": "schema:Event" },
{ "$ref": "schema:MedicalEntity" },
{ "$ref": "schema:Organization" },
{ "$ref": "schema:Person" },
{ "$ref": "schema:Product" }
]
}
}
]
},
"funder": {
"description": "A person or organization that supports (sponsors) something through some kind of financial contribution.",
"oneOf": [
{
"anyOf": [
{ "$ref": "schema:Organization" },
{ "$ref": "schema:Person" }
]
},
{
"type": "array",
"items": {
"anyOf": [
{ "$ref": "schema:Organization" },
{ "$ref": "schema:Person" }
]
}
}
]
},
"sponsor": {
"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.",
"oneOf": [
{
"anyOf": [
{ "$ref": "schema:Organization" },
{ "$ref": "schema:Person" }
]
},
{
"type": "array",
"items": {
"anyOf": [
{ "$ref": "schema:Organization" },
{ "$ref": "schema:Person" }
]
}
}
]
}
}
}