OppFunding
Details about the funding available for an opportunity.
Data model
Property | Type | Required | Description |
---|---|---|---|
totalAmountAvailable | Money | No | Total amount of funding available |
minAwardAmount | Money | No | Minimum amount of funding granted per award |
maxAwardAmount | Money | No | Maximum amount of funding granted per award |
minAwardCount | integer | No | Minimum number of awards granted |
maxAwardCount | integer | No | Maximum number of awards granted |
estimatedAwardCount | integer | No | Estimated number of awards that will be granted |
$schema: https://json-schema.org/draft/2020-12/schema$id: OppFunding.yamltype: objectproperties: totalAmountAvailable: $ref: Money.yaml description: Total amount of funding available for this opportunity minAwardAmount: $ref: Money.yaml description: Minimum amount of funding granted per award maxAwardAmount: $ref: Money.yaml description: Maximum amount of funding granted per award minAwardCount: type: integer description: Minimum number of awards granted maxAwardCount: type: integer description: Maximum number of awards granted estimatedAwardCount: type: integer description: Estimated number of awards that will be granteddescription: Details about the funding available for this opportunity
/** Details about the funding available for this opportunity */model OppFunding { /** Total amount of funding available for this opportunity */ totalAmountAvailable?: Money;
/** Minimum amount of funding granted per award */ minAwardAmount?: Money;
/** Maximum amount of funding granted per award */ maxAwardAmount?: Money;
/** Minimum number of awards granted */ minAwardCount?: integer;
/** Maximum number of awards granted */ maxAwardCount?: integer;
/** Estimated number of awards that will be granted */ estimatedAwardCount?: integer;}
{ "totalAmountAvailable": { "amount": "1000000.00", "currency": "USD" }, "minAwardAmount": { "amount": "10000.00", "currency": "USD" }, "maxAwardAmount": { "amount": "50000.00", "currency": "USD" }, "minAwardCount": 5, "maxAwardCount": 20, "estimatedAwardCount": 10}