{
  "$id": "https://schema.rtemis.org/conformal/split/v1/schema.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "rtemis SplitConformalConfig",
  "description": "Split conformal prediction. See setup_SplitConformal.",
  "type": "object",
  "properties": {
    "alpha": {
      "description": "Miscoverage rate. The region covers with probability at least 1 - alpha.",
      "type": "number",
      "exclusiveMinimum": 0,
      "exclusiveMaximum": 1,
      "x-rtemis": {
        "type": "number"
      }
    },
    "score": {
      "description": "Nonconformity score. NULL = 'absolute' for a regression, 'APS' for a classification.",
      "type": ["string", "null"],
      "enum": [
        "absolute",
        "LAC",
        "APS",
        null
      ],
      "x-rtemis": {
        "type": "string",
        "default_on_null": true
      }
    },
    "seed": {
      "description": "Random seed for the APS draw. NULL draws one and records it.",
      "type": ["integer", "null"],
      "minimum": 0,
      "x-rtemis": {
        "type": "integer"
      }
    }
  }
}
