{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$ref": "#/definitions/ReportGenerateResult",
  "definitions": {
    "ReportGenerateResult": {
      "type": "object",
      "properties": {
        "format": {
          "$ref": "#/definitions/ReportOutputFormat"
        },
        "out": {
          "type": "string"
        },
        "bytes": {
          "type": "number"
        }
      },
      "required": ["format", "bytes"],
      "additionalProperties": false
    },
    "ReportOutputFormat": {
      "type": "string",
      "enum": ["html", "markdown"]
    }
  }
}
