Blame benchtests/scripts/benchout.schema.json

Packit Service 82fcde
{
Packit Service 82fcde
  "title": "benchmark",
Packit Service 82fcde
  "type": "object",
Packit Service 82fcde
  "properties": {
Packit Service 82fcde
    "timing_type": {
Packit Service 82fcde
      "type": "string"
Packit Service 82fcde
    },
Packit Service 82fcde
    "functions": {
Packit Service 82fcde
      "title": "Associative array of functions",
Packit Service 82fcde
      "type": "object",
Packit Service 82fcde
      "patternProperties": {
Packit Service 82fcde
        "^[_a-zA-Z][_a-zA-Z0-9]+$": {
Packit Service 82fcde
          "title": "Function names",
Packit Service 82fcde
          "type": "object",
Packit Service 82fcde
          "patternProperties": {
Packit Service 82fcde
            "^[_a-zA-Z0-9,=.-]*$": {
Packit Service 82fcde
              "title": "Function variants",
Packit Service 82fcde
              "type": "object",
Packit Service 82fcde
              "properties": {
Packit Service 82fcde
                "duration": {"type": "number"},
Packit Service 82fcde
                "iterations": {"type": "number"},
Packit Service 82fcde
                "throughput": {"type": "number"},
Packit Service 82fcde
                "max": {"type": "number"},
Packit Service 82fcde
                "min": {"type": "number"},
Packit Service 82fcde
                "mean": {"type": "number"},
Packit Service 82fcde
                "timings": {
Packit Service 82fcde
                  "type": "array",
Packit Service 82fcde
                  "items": {"type": "number"}
Packit Service 82fcde
                }
Packit Service 82fcde
              },
Packit Service 82fcde
              "required": ["duration", "iterations"],
Packit Service 82fcde
              "additionalProperties": false
Packit Service 82fcde
            }
Packit Service 82fcde
          },
Packit Service 82fcde
          "additionalProperties": false
Packit Service 82fcde
        }
Packit Service 82fcde
      },
Packit Service 82fcde
      "minProperties": 1
Packit Service 82fcde
    }
Packit Service 82fcde
  },
Packit Service 82fcde
  "required": ["timing_type", "functions"],
Packit Service 82fcde
  "additionalProperties": false
Packit Service 82fcde
}