{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$ref": "#/definitions/DiagramRenderResult",
  "definitions": {
    "DiagramRenderResult": {
      "type": "object",
      "properties": {
        "format": {
          "anyOf": [
            {
              "$ref": "#/definitions/DiagramOutputFormat"
            },
            {
              "type": "string",
              "const": "svg"
            },
            {
              "type": "string",
              "const": "pdf"
            }
          ]
        },
        "out": {
          "type": "string"
        },
        "bytes": {
          "type": "number"
        }
      },
      "required": ["format", "bytes"],
      "additionalProperties": false
    },
    "DiagramOutputFormat": {
      "type": "string",
      "enum": ["mermaid", "maxgraph-json", "drawio"]
    }
  }
}
