OpportunitySearchResponseV1Schema

HealthPublic HealthGrantsInteroperabilityFHIRGovernmentOpen DataFDAHRSAONC

Properties

Name Type Description
pagination_info object The pagination information for paginated endpoints
message string The message to return
data array
status_code integer The HTTP status code
facet_counts object Counts of filter/facet values in the full response
View JSON Schema on GitHub

JSON Schema

opportunitysearchresponsev1.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.simpler.grants.gov/schemas/OpportunitySearchResponseV1Schema",
  "title": "OpportunitySearchResponseV1Schema",
  "type": "object",
  "properties": {
    "pagination_info": {
      "description": "The pagination information for paginated endpoints",
      "type": [
        "object"
      ],
      "$ref": "#/components/schemas/PaginationInfoSchema"
    },
    "message": {
      "type": "string",
      "description": "The message to return",
      "example": "Success"
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/OpportunityV1Schema"
      }
    },
    "status_code": {
      "type": "integer",
      "description": "The HTTP status code",
      "example": 200
    },
    "facet_counts": {
      "description": "Counts of filter/facet values in the full response",
      "type": [
        "object"
      ],
      "$ref": "#/components/schemas/OpportunityFacetV1Schema"
    }
  }
}