HealthcheckResponseSchema

HealthPublic HealthGrantsInteroperabilityFHIRGovernmentOpen DataFDAHRSAONC

Properties

Name Type Description
message string The message to return
data object
status_code integer The HTTP status code
View JSON Schema on GitHub

JSON Schema

healthcheckresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.simpler.grants.gov/schemas/HealthcheckResponseSchema",
  "title": "HealthcheckResponseSchema",
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "description": "The message to return",
      "example": "Success"
    },
    "data": {
      "type": [
        "object"
      ],
      "$ref": "#/components/schemas/HealthcheckMetadataSchema"
    },
    "status_code": {
      "type": "integer",
      "description": "The HTTP status code",
      "example": 200
    }
  }
}