OpportunitySearchResponse

Search results for USADF grant opportunities

Federal GovernmentInternational DevelopmentAfricaGrantsNonprofitEconomic Development

Properties

Name Type Description
total integer Total matching opportunities
rows integer Page size
startRecordNum integer Starting record number
hitCount integer Number of results returned
oppHits array List of matching opportunities
View JSON Schema on GitHub

JSON Schema

grant-opportunities-api-opportunitysearchresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.usadf.gov/schema/opportunitysearchresponse.json",
  "title": "OpportunitySearchResponse",
  "description": "Search results for USADF grant opportunities",
  "type": "object",
  "properties": {
    "total": {
      "description": "Total matching opportunities",
      "type": "integer",
      "example": 3
    },
    "rows": {
      "description": "Page size",
      "type": "integer",
      "example": 25
    },
    "startRecordNum": {
      "description": "Starting record number",
      "type": "integer",
      "example": 0
    },
    "hitCount": {
      "description": "Number of results returned",
      "type": "integer",
      "example": 3
    },
    "oppHits": {
      "description": "List of matching opportunities",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Opportunity"
      }
    }
  }
}