{
  "title": "params",
  "type": "object",
  "properties": {
    "workload": {
      "type": "array",
      "items": {
        "type": "number"
      },
      "minItems": 5,
      "maxItems": 20,
      "uniqueItems": true
    },
    "lactate": {
      "type": "array",
      "items": {
        "type": "number"
      },
      "minItems": 5,
      "maxItems": 20
    },
    "func": {
      "type": "string",
      "enum": [
        "exp",
        "poly3",
        "poly4",
        "robust_poly3",
        "robust_poly4",
        "ppoly",
        "smooth_ppoly"
      ]
    }
  },
  "required": [
    "workload",
    "lactate",
    "func"
  ]
}