﻿{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "HealthCheckResult",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "Name"
  ],
  "properties": {
    "Name": {
      "type": "string",
      "minLength": 1
    },
    "Description": {
      "type": [
        "null",
        "string"
      ]
    }
  }
}