{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://swl-ses.dev/schemas/hook-profiles.json",
  "title": "SWL Hook Profiles",
  "description": "Schema para hook-profiles.json del sistema SWL",
  "type": "object",
  "required": ["descripcion", "perfilActivo", "perfiles"],
  "properties": {
    "descripcion": {
      "type": "string"
    },
    "perfilActivo": {
      "type": "string",
      "enum": ["minimal", "standard", "strict", "custom"]
    },
    "perfiles": {
      "type": "object",
      "additionalProperties": {
        "type": "object",
        "required": ["descripcion", "hooks"],
        "properties": {
          "descripcion": {
            "type": "string"
          },
          "hooks": {
            "type": "array",
            "items": { "type": "string" }
          },
          "overrides": {
            "type": "object"
          }
        }
      }
    },
    "variablesEntorno": {
      "type": "object"
    }
  }
}
