{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/Tehlikeli107/contextdiet/schema/contextdiet.schema.json",
  "title": "contextdiet configuration",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "$schema": {
      "type": "string"
    },
    "threshold": {
      "type": "integer",
      "minimum": 0,
      "maximum": 100,
      "default": 90
    },
    "ignoredRules": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "uniqueItems": true,
      "default": []
    },
    "rules": {
      "type": "object",
      "additionalProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "weight": {
            "type": "integer",
            "minimum": 0,
            "maximum": 100
          }
        }
      },
      "default": {}
    }
  }
}
