All Downloads are FREE. Search and download functionalities are using the official Maven repository.

icroprofile.health.microprofile-health-tck.4.0.1.source-code.health-check-schema.json Maven / Gradle / Ivy

The newest version!
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "status": {
      "type": "string"
    },
    "checks": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "patternProperties": {
              "[a-zA-Z_]*": {
                "type": [
                  "string",
                  "boolean",
                  "number"
                ]
              }
            },
            "additionalProperties": false
          }
        },
        "required": [
          "name",
          "status"
        ]
      }
    }
  },
  "required": [
    "status",
    "checks"
  ],
  "additionalProperties": false
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy