Atlassian · Schema

HealthCheckResult

Jira instance health check results. Deprecated and no longer returned.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
description string The description of the Jira health check item.
name string The name of the Jira health check item.
passed boolean Whether the Jira health check item passed or failed.
View JSON Schema on GitHub

JSON Schema

atlassian-healthcheckresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HealthCheckResult",
  "title": "HealthCheckResult",
  "additionalProperties": false,
  "description": "Jira instance health check results. Deprecated and no longer returned.",
  "properties": {
    "description": {
      "description": "The description of the Jira health check item.",
      "type": "string"
    },
    "name": {
      "description": "The name of the Jira health check item.",
      "type": "string"
    },
    "passed": {
      "description": "Whether the Jira health check item passed or failed.",
      "type": "boolean"
    }
  },
  "type": "object"
}