{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://swl-ses.dev/schemas/modulos.json",
  "title": "SWL Modulos",
  "description": "Schema para modulos.json del sistema SWL",
  "type": "object",
  "required": ["version", "modulos"],
  "properties": {
    "version": {
      "type": "string"
    },
    "modulos": {
      "type": "object",
      "additionalProperties": {
        "type": "object",
        "required": ["descripcion", "componentes"],
        "properties": {
          "descripcion": {
            "type": "string"
          },
          "componentes": {
            "type": "array",
            "items": { "type": "string" }
          }
        }
      }
    }
  }
}
