{
  "openapi": "3.0.0",
  "info": {
    "title": "indice-inclusion-backend",
    "version": "0.0.1",
    "description": "",
    "contact": {}
  },
  "paths": {
    "/area/{id}": {
      "put": {
        "x-controller-name": "AreaController",
        "x-operation-name": "replaceById",
        "tags": [
          "AreaController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Area PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AreaController.replaceById"
      },
      "get": {
        "x-controller-name": "AreaController",
        "x-operation-name": "findById",
        "tags": [
          "AreaController"
        ],
        "responses": {
          "200": {
            "description": "Area model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AreaWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Area.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AreaController.findById"
      },
      "delete": {
        "x-controller-name": "AreaController",
        "x-operation-name": "deleteById",
        "tags": [
          "AreaController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Area DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "AreaController.deleteById"
      }
    },
    "/area": {
      "post": {
        "x-controller-name": "AreaController",
        "x-operation-name": "create",
        "tags": [
          "AreaController"
        ],
        "responses": {
          "200": {
            "description": "Area model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Area"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewArea"
              }
            }
          }
        },
        "operationId": "AreaController.create"
      },
      "get": {
        "x-controller-name": "AreaController",
        "x-operation-name": "find",
        "tags": [
          "AreaController"
        ],
        "responses": {
          "200": {
            "description": "Array of Area model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/AreaWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Area.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "AreaController.find"
      }
    },
    "/areas/{id}/procesos": {
      "post": {
        "x-controller-name": "AreaProcesoController",
        "x-operation-name": "create",
        "tags": [
          "AreaProcesoController"
        ],
        "responses": {
          "200": {
            "description": "Area model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Proceso"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewProcesoInArea"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AreaProcesoController.create"
      },
      "patch": {
        "x-controller-name": "AreaProcesoController",
        "x-operation-name": "patch",
        "tags": [
          "AreaProcesoController"
        ],
        "responses": {
          "200": {
            "description": "Area.Proceso PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Proceso.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Proceso>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ProcesoPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AreaProcesoController.patch"
      },
      "get": {
        "x-controller-name": "AreaProcesoController",
        "x-operation-name": "find",
        "tags": [
          "AreaProcesoController"
        ],
        "responses": {
          "200": {
            "description": "Array of Area has many Proceso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Proceso"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "AreaProcesoController.find"
      },
      "delete": {
        "x-controller-name": "AreaProcesoController",
        "x-operation-name": "delete",
        "tags": [
          "AreaProcesoController"
        ],
        "responses": {
          "200": {
            "description": "Area.Proceso DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Proceso.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Proceso>"
                }
              }
            }
          }
        ],
        "operationId": "AreaProcesoController.delete"
      }
    },
    "/cuestionarios": {
      "post": {
        "x-controller-name": "EstadisticaController",
        "x-operation-name": "findDataCuestionarios",
        "tags": [
          "EstadisticaController"
        ],
        "responses": {
          "200": {
            "description": "Información de los cuestionarios",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "EstadisticaController.findDataCuestionarios"
      }
    },
    "/cuestionariosEjecution": {
      "post": {
        "x-controller-name": "ReportesController",
        "x-operation-name": "getCuestionarioEjecution",
        "tags": [
          "ReportesController"
        ],
        "responses": {
          "200": {
            "description": "Reportes del indice de inclusión",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "ReportesController.getCuestionarioEjecution"
      }
    },
    "/cuestionariosInstitucion": {
      "post": {
        "x-controller-name": "ReportesController",
        "x-operation-name": "getCuestionarioInstitucion",
        "tags": [
          "ReportesController"
        ],
        "responses": {
          "200": {
            "description": "Reportes del indice de inclusión",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "ReportesController.getCuestionarioInstitucion"
      }
    },
    "/cuestionariosSede": {
      "post": {
        "x-controller-name": "ReportesController",
        "x-operation-name": "getCuestionarioSede",
        "tags": [
          "ReportesController"
        ],
        "responses": {
          "200": {
            "description": "Reportes del indice de inclusión",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "ReportesController.getCuestionarioSede"
      }
    },
    "/cuestionariosuser": {
      "post": {
        "x-controller-name": "EstadisticaController",
        "x-operation-name": "findDataCuestionariosByUser",
        "tags": [
          "EstadisticaController"
        ],
        "responses": {
          "200": {
            "description": "Información de los cuestionarios",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "EstadisticaController.findDataCuestionariosByUser"
      }
    },
    "/cuestionarioxa/data/{id}": {
      "get": {
        "x-controller-name": "CuestionarioxaController",
        "x-operation-name": "findByIdSpecific",
        "tags": [
          "CuestionarioxaController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Cuestionarioxa especifico para editar"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "CuestionarioxaController.findByIdSpecific"
      }
    },
    "/cuestionarioxas/data": {
      "get": {
        "x-controller-name": "CuestionarioxaController",
        "x-operation-name": "findData",
        "tags": [
          "CuestionarioxaController"
        ],
        "responses": {
          "200": {
            "description": "Array of Cuestionarioxa model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array"
                }
              }
            }
          }
        },
        "operationId": "CuestionarioxaController.findData"
      }
    },
    "/cuestionarioxas/{id}": {
      "put": {
        "x-controller-name": "CuestionarioxaController",
        "x-operation-name": "replaceById",
        "tags": [
          "CuestionarioxaController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Cuestionarioxa PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CuestionarioxaController.replaceById"
      },
      "get": {
        "x-controller-name": "CuestionarioxaController",
        "x-operation-name": "findById",
        "tags": [
          "CuestionarioxaController"
        ],
        "responses": {
          "200": {
            "description": "Cuestionarioxa model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CuestionarioxaWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Cuestionarioxa.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CuestionarioxaController.findById"
      },
      "delete": {
        "x-controller-name": "CuestionarioxaController",
        "x-operation-name": "deleteById",
        "tags": [
          "CuestionarioxaController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Cuestionarioxa DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "CuestionarioxaController.deleteById"
      }
    },
    "/cuestionarioxas": {
      "post": {
        "x-controller-name": "CuestionarioxaController",
        "x-operation-name": "create",
        "tags": [
          "CuestionarioxaController"
        ],
        "responses": {
          "200": {
            "description": "Cuestionarioxa model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Cuestionarioxa"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "CuestionarioxaController.create"
      },
      "get": {
        "x-controller-name": "CuestionarioxaController",
        "x-operation-name": "find",
        "tags": [
          "CuestionarioxaController"
        ],
        "responses": {
          "200": {
            "description": "Array of Cuestionarioxa model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/CuestionarioxaWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Cuestionarioxa.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "CuestionarioxaController.find"
      }
    },
    "/cuestionarioxb/data/{id}": {
      "get": {
        "x-controller-name": "CuestionarioxbController",
        "x-operation-name": "findByIdSpecific",
        "tags": [
          "CuestionarioxbController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Cuestionarioxb especifico para editar"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "CuestionarioxbController.findByIdSpecific"
      }
    },
    "/cuestionarioxbs/data": {
      "get": {
        "x-controller-name": "CuestionarioxbController",
        "x-operation-name": "findData",
        "tags": [
          "CuestionarioxbController"
        ],
        "responses": {
          "200": {
            "description": "Array of Cuestionarioxb model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array"
                }
              }
            }
          }
        },
        "operationId": "CuestionarioxbController.findData"
      }
    },
    "/cuestionarioxbs/{id}": {
      "put": {
        "x-controller-name": "CuestionarioxbController",
        "x-operation-name": "replaceById",
        "tags": [
          "CuestionarioxbController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Cuestionarioxb PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CuestionarioxbController.replaceById"
      },
      "get": {
        "x-controller-name": "CuestionarioxbController",
        "x-operation-name": "findById",
        "tags": [
          "CuestionarioxbController"
        ],
        "responses": {
          "200": {
            "description": "Cuestionarioxb model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CuestionarioxbWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Cuestionarioxb.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CuestionarioxbController.findById"
      },
      "delete": {
        "x-controller-name": "CuestionarioxbController",
        "x-operation-name": "deleteById",
        "tags": [
          "CuestionarioxbController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Cuestionarioxb DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "CuestionarioxbController.deleteById"
      }
    },
    "/cuestionarioxbs": {
      "post": {
        "x-controller-name": "CuestionarioxbController",
        "x-operation-name": "create",
        "tags": [
          "CuestionarioxbController"
        ],
        "responses": {
          "200": {
            "description": "Cuestionarioxb model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Cuestionarioxb"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "CuestionarioxbController.create"
      },
      "get": {
        "x-controller-name": "CuestionarioxbController",
        "x-operation-name": "find",
        "tags": [
          "CuestionarioxbController"
        ],
        "responses": {
          "200": {
            "description": "Array of Cuestionarioxb model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/CuestionarioxbWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Cuestionarioxb.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "CuestionarioxbController.find"
      }
    },
    "/departamentos/{id}/municipios": {
      "post": {
        "x-controller-name": "DepartamentoMunicipioController",
        "x-operation-name": "create",
        "tags": [
          "DepartamentoMunicipioController"
        ],
        "responses": {
          "200": {
            "description": "Departamento model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Municipio"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewMunicipioInDepartamento"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "DepartamentoMunicipioController.create"
      },
      "patch": {
        "x-controller-name": "DepartamentoMunicipioController",
        "x-operation-name": "patch",
        "tags": [
          "DepartamentoMunicipioController"
        ],
        "responses": {
          "200": {
            "description": "Departamento.Municipio PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Municipio.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Municipio>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MunicipioPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "DepartamentoMunicipioController.patch"
      },
      "get": {
        "x-controller-name": "DepartamentoMunicipioController",
        "x-operation-name": "find",
        "tags": [
          "DepartamentoMunicipioController"
        ],
        "responses": {
          "200": {
            "description": "Array of Departamento has many Municipio",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Municipio"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "DepartamentoMunicipioController.find"
      },
      "delete": {
        "x-controller-name": "DepartamentoMunicipioController",
        "x-operation-name": "delete",
        "tags": [
          "DepartamentoMunicipioController"
        ],
        "responses": {
          "200": {
            "description": "Departamento.Municipio DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Municipio.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Municipio>"
                }
              }
            }
          }
        ],
        "operationId": "DepartamentoMunicipioController.delete"
      }
    },
    "/departamentos/{id}": {
      "put": {
        "x-controller-name": "DepartamentoController",
        "x-operation-name": "replaceById",
        "tags": [
          "DepartamentoController"
        ],
        "responses": {
          "201": {
            "description": "Created",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Departamento PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "DepartamentoController.replaceById"
      },
      "get": {
        "x-controller-name": "DepartamentoController",
        "x-operation-name": "findById",
        "tags": [
          "DepartamentoController"
        ],
        "responses": {
          "200": {
            "description": "Departamento model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DepartamentoWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Departamento.Filter"
                }
              }
            }
          }
        ],
        "operationId": "DepartamentoController.findById"
      },
      "delete": {
        "x-controller-name": "DepartamentoController",
        "x-operation-name": "deleteById",
        "tags": [
          "DepartamentoController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Departamento DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "DepartamentoController.deleteById"
      }
    },
    "/departamentos": {
      "post": {
        "x-controller-name": "DepartamentoController",
        "x-operation-name": "create",
        "tags": [
          "DepartamentoController"
        ],
        "responses": {
          "200": {
            "description": "Departamento model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Departamento"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewDepartamento"
              }
            }
          }
        },
        "operationId": "DepartamentoController.create"
      },
      "get": {
        "x-controller-name": "DepartamentoController",
        "x-operation-name": "find",
        "tags": [
          "DepartamentoController"
        ],
        "responses": {
          "200": {
            "description": "Array of Departamento model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/DepartamentoWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Departamento.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "DepartamentoController.find"
      }
    },
    "/departmentsByUser": {
      "post": {
        "x-controller-name": "FiltrosController",
        "x-operation-name": "departmentsByUser",
        "tags": [
          "FiltrosController"
        ],
        "responses": {
          "200": {
            "description": "Information department filter",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "FiltrosController.departmentsByUser"
      }
    },
    "/ejecucion/year/state/{id}": {
      "get": {
        "x-controller-name": "EjecucionController",
        "x-operation-name": "findByState",
        "tags": [
          "EjecucionController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Ejecucion by state"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "EjecucionController.findByState"
      }
    },
    "/ejecucion/year/{idYear}": {
      "get": {
        "x-controller-name": "EjecucionController",
        "x-operation-name": "findByidYear",
        "tags": [
          "EjecucionController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Ejecucion by year"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "idYear",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "EjecucionController.findByidYear"
      }
    },
    "/ejecucion/year": {
      "get": {
        "x-controller-name": "EjecucionController",
        "x-operation-name": "findEjecutionYear",
        "tags": [
          "EjecucionController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Array of Ejecucion with year"
                }
              }
            }
          }
        },
        "operationId": "EjecucionController.findEjecutionYear"
      }
    },
    "/ejecucion/{id}": {
      "put": {
        "x-controller-name": "EjecucionController",
        "x-operation-name": "replaceById",
        "tags": [
          "EjecucionController"
        ],
        "responses": {
          "201": {
            "description": "Created",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Ejecucion PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "EjecucionController.replaceById"
      },
      "get": {
        "x-controller-name": "EjecucionController",
        "x-operation-name": "findById",
        "tags": [
          "EjecucionController"
        ],
        "responses": {
          "200": {
            "description": "Ejecucion model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/EjecucionWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ejecucion.Filter"
                }
              }
            }
          }
        ],
        "operationId": "EjecucionController.findById"
      },
      "delete": {
        "x-controller-name": "EjecucionController",
        "x-operation-name": "deleteById",
        "tags": [
          "EjecucionController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Ejecucion DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "EjecucionController.deleteById"
      }
    },
    "/ejecucion": {
      "post": {
        "x-controller-name": "EjecucionController",
        "x-operation-name": "create",
        "tags": [
          "EjecucionController"
        ],
        "responses": {
          "200": {
            "description": "Ejecucion model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ejecucion"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewEjecucion"
              }
            }
          }
        },
        "operationId": "EjecucionController.create"
      },
      "get": {
        "x-controller-name": "EjecucionController",
        "x-operation-name": "find",
        "tags": [
          "EjecucionController"
        ],
        "responses": {
          "200": {
            "description": "Array of Ejecucion model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/EjecucionWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ejecucion.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "EjecucionController.find"
      }
    },
    "/ejecucions/{id}/cuestionarioxas": {
      "post": {
        "x-controller-name": "EjecucionCuestionarioxaController",
        "x-operation-name": "create",
        "tags": [
          "EjecucionCuestionarioxaController"
        ],
        "responses": {
          "200": {
            "description": "Ejecucion model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Cuestionarioxa"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewCuestionarioxaInEjecucion"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "EjecucionCuestionarioxaController.create"
      },
      "patch": {
        "x-controller-name": "EjecucionCuestionarioxaController",
        "x-operation-name": "patch",
        "tags": [
          "EjecucionCuestionarioxaController"
        ],
        "responses": {
          "200": {
            "description": "Ejecucion.Cuestionarioxa PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Cuestionarioxa.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Cuestionarioxa>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CuestionarioxaPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "EjecucionCuestionarioxaController.patch"
      },
      "get": {
        "x-controller-name": "EjecucionCuestionarioxaController",
        "x-operation-name": "find",
        "tags": [
          "EjecucionCuestionarioxaController"
        ],
        "responses": {
          "200": {
            "description": "Array of Ejecucion has many Cuestionarioxa",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Cuestionarioxa"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "EjecucionCuestionarioxaController.find"
      },
      "delete": {
        "x-controller-name": "EjecucionCuestionarioxaController",
        "x-operation-name": "delete",
        "tags": [
          "EjecucionCuestionarioxaController"
        ],
        "responses": {
          "200": {
            "description": "Ejecucion.Cuestionarioxa DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Cuestionarioxa.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Cuestionarioxa>"
                }
              }
            }
          }
        ],
        "operationId": "EjecucionCuestionarioxaController.delete"
      }
    },
    "/ejecucions/{id}/cuestionarioxbs": {
      "post": {
        "x-controller-name": "EjecucionCuestionarioxbController",
        "x-operation-name": "create",
        "tags": [
          "EjecucionCuestionarioxbController"
        ],
        "responses": {
          "200": {
            "description": "Ejecucion model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Cuestionarioxb"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewCuestionarioxbInEjecucion"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "EjecucionCuestionarioxbController.create"
      },
      "patch": {
        "x-controller-name": "EjecucionCuestionarioxbController",
        "x-operation-name": "patch",
        "tags": [
          "EjecucionCuestionarioxbController"
        ],
        "responses": {
          "200": {
            "description": "Ejecucion.Cuestionarioxb PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Cuestionarioxb.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Cuestionarioxb>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CuestionarioxbPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "EjecucionCuestionarioxbController.patch"
      },
      "get": {
        "x-controller-name": "EjecucionCuestionarioxbController",
        "x-operation-name": "find",
        "tags": [
          "EjecucionCuestionarioxbController"
        ],
        "responses": {
          "200": {
            "description": "Array of Ejecucion has many Cuestionarioxb",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Cuestionarioxb"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "EjecucionCuestionarioxbController.find"
      },
      "delete": {
        "x-controller-name": "EjecucionCuestionarioxbController",
        "x-operation-name": "delete",
        "tags": [
          "EjecucionCuestionarioxbController"
        ],
        "responses": {
          "200": {
            "description": "Ejecucion.Cuestionarioxb DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Cuestionarioxb.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Cuestionarioxb>"
                }
              }
            }
          }
        ],
        "operationId": "EjecucionCuestionarioxbController.delete"
      }
    },
    "/estadistica/file/institucion/one/{ejecutionId}": {
      "post": {
        "x-controller-name": "EstadisticaController",
        "x-operation-name": "retriveFileForOneInstitution",
        "tags": [
          "EstadisticaController"
        ],
        "responses": {
          "200": {
            "description": "File for adding cuestionarios"
          }
        },
        "parameters": [
          {
            "name": "ejecutionId",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "x-parser": "stream",
              "schema": {
                "type": "object"
              }
            }
          },
          "description": "multipart/form-data value.",
          "required": true
        },
        "operationId": "EstadisticaController.retriveFileForOneInstitution"
      }
    },
    "/estadistica/file/institucion/{ejecutionId}": {
      "post": {
        "x-controller-name": "EstadisticaController",
        "x-operation-name": "retriveFileInstitucion",
        "tags": [
          "EstadisticaController"
        ],
        "responses": {
          "200": {
            "description": "File for adding cuestionarios"
          }
        },
        "parameters": [
          {
            "name": "ejecutionId",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "x-parser": "stream",
              "schema": {
                "type": "object"
              }
            }
          },
          "description": "multipart/form-data value.",
          "required": true
        },
        "operationId": "EstadisticaController.retriveFileInstitucion"
      }
    },
    "/estadistica/file/sede/one/{ejecutionId}": {
      "post": {
        "x-controller-name": "EstadisticaController",
        "x-operation-name": "retriveFileForOne",
        "tags": [
          "EstadisticaController"
        ],
        "responses": {
          "200": {
            "description": "File for adding cuestionarios"
          }
        },
        "parameters": [
          {
            "name": "ejecutionId",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "x-parser": "stream",
              "schema": {
                "type": "object"
              }
            }
          },
          "description": "multipart/form-data value.",
          "required": true
        },
        "operationId": "EstadisticaController.retriveFileForOne"
      }
    },
    "/estadistica/file/sede/{ejecutionId}": {
      "post": {
        "x-controller-name": "EstadisticaController",
        "x-operation-name": "retriveFile",
        "tags": [
          "EstadisticaController"
        ],
        "responses": {
          "200": {
            "description": "File for adding cuestionarios"
          }
        },
        "parameters": [
          {
            "name": "ejecutionId",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "x-parser": "stream",
              "schema": {
                "type": "object"
              }
            }
          },
          "description": "multipart/form-data value.",
          "required": true
        },
        "operationId": "EstadisticaController.retriveFile"
      }
    },
    "/estadistica": {
      "post": {
        "x-controller-name": "EstadisticaController",
        "x-operation-name": "find",
        "tags": [
          "EstadisticaController"
        ],
        "responses": {
          "200": {
            "description": "Information indice de inclusión",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "EstadisticaController.find"
      }
    },
    "/estadisticaIndice": {
      "post": {
        "x-controller-name": "EstadisticaController",
        "x-operation-name": "findIndice",
        "tags": [
          "EstadisticaController"
        ],
        "responses": {
          "200": {
            "description": "Information indice de inclusión",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "EstadisticaController.findIndice"
      }
    },
    "/estamento/formularioa": {
      "get": {
        "x-controller-name": "EstamentoController",
        "x-operation-name": "findEstamentoA",
        "tags": [
          "EstamentoController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Estamentos formulario 1"
                }
              }
            }
          }
        },
        "operationId": "EstamentoController.findEstamentoA"
      }
    },
    "/estamento/formulariob": {
      "get": {
        "x-controller-name": "EstamentoController",
        "x-operation-name": "findEstamentoB",
        "tags": [
          "EstamentoController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Estamentos formulario 2"
                }
              }
            }
          }
        },
        "operationId": "EstamentoController.findEstamentoB"
      }
    },
    "/estamento/{id}": {
      "put": {
        "x-controller-name": "EstamentoController",
        "x-operation-name": "replaceById",
        "tags": [
          "EstamentoController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Estamento PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "EstamentoController.replaceById"
      },
      "get": {
        "x-controller-name": "EstamentoController",
        "x-operation-name": "findById",
        "tags": [
          "EstamentoController"
        ],
        "responses": {
          "200": {
            "description": "Estamento model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/EstamentoWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Estamento.Filter"
                }
              }
            }
          }
        ],
        "operationId": "EstamentoController.findById"
      },
      "delete": {
        "x-controller-name": "EstamentoController",
        "x-operation-name": "deleteById",
        "tags": [
          "EstamentoController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Estamento DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "EstamentoController.deleteById"
      }
    },
    "/estamento": {
      "post": {
        "x-controller-name": "EstamentoController",
        "x-operation-name": "create",
        "tags": [
          "EstamentoController"
        ],
        "responses": {
          "200": {
            "description": "Estamento model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Estamento"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewEstamento"
              }
            }
          }
        },
        "operationId": "EstamentoController.create"
      },
      "get": {
        "x-controller-name": "EstamentoController",
        "x-operation-name": "find",
        "tags": [
          "EstamentoController"
        ],
        "responses": {
          "200": {
            "description": "Array of Estamento model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/EstamentoWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Estamento.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "EstamentoController.find"
      }
    },
    "/estamentos/{id}/cuestionarioxas": {
      "post": {
        "x-controller-name": "EstamentoCuestionarioxaController",
        "x-operation-name": "create",
        "tags": [
          "EstamentoCuestionarioxaController"
        ],
        "responses": {
          "200": {
            "description": "Estamento model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Cuestionarioxa"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewCuestionarioxaInEstamento"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "EstamentoCuestionarioxaController.create"
      },
      "patch": {
        "x-controller-name": "EstamentoCuestionarioxaController",
        "x-operation-name": "patch",
        "tags": [
          "EstamentoCuestionarioxaController"
        ],
        "responses": {
          "200": {
            "description": "Estamento.Cuestionarioxa PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Cuestionarioxa.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Cuestionarioxa>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CuestionarioxaPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "EstamentoCuestionarioxaController.patch"
      },
      "get": {
        "x-controller-name": "EstamentoCuestionarioxaController",
        "x-operation-name": "find",
        "tags": [
          "EstamentoCuestionarioxaController"
        ],
        "responses": {
          "200": {
            "description": "Array of Estamento has many Cuestionarioxa",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Cuestionarioxa"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "EstamentoCuestionarioxaController.find"
      },
      "delete": {
        "x-controller-name": "EstamentoCuestionarioxaController",
        "x-operation-name": "delete",
        "tags": [
          "EstamentoCuestionarioxaController"
        ],
        "responses": {
          "200": {
            "description": "Estamento.Cuestionarioxa DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Cuestionarioxa.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Cuestionarioxa>"
                }
              }
            }
          }
        ],
        "operationId": "EstamentoCuestionarioxaController.delete"
      }
    },
    "/estamentos/{id}/cuestionarioxbs": {
      "post": {
        "x-controller-name": "EstamentoCuestionarioxbController",
        "x-operation-name": "create",
        "tags": [
          "EstamentoCuestionarioxbController"
        ],
        "responses": {
          "200": {
            "description": "Estamento model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Cuestionarioxb"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewCuestionarioxbInEstamento"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "EstamentoCuestionarioxbController.create"
      },
      "patch": {
        "x-controller-name": "EstamentoCuestionarioxbController",
        "x-operation-name": "patch",
        "tags": [
          "EstamentoCuestionarioxbController"
        ],
        "responses": {
          "200": {
            "description": "Estamento.Cuestionarioxb PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Cuestionarioxb.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Cuestionarioxb>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CuestionarioxbPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "EstamentoCuestionarioxbController.patch"
      },
      "get": {
        "x-controller-name": "EstamentoCuestionarioxbController",
        "x-operation-name": "find",
        "tags": [
          "EstamentoCuestionarioxbController"
        ],
        "responses": {
          "200": {
            "description": "Array of Estamento has many Cuestionarioxb",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Cuestionarioxb"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "EstamentoCuestionarioxbController.find"
      },
      "delete": {
        "x-controller-name": "EstamentoCuestionarioxbController",
        "x-operation-name": "delete",
        "tags": [
          "EstamentoCuestionarioxbController"
        ],
        "responses": {
          "200": {
            "description": "Estamento.Cuestionarioxb DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Cuestionarioxb.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Cuestionarioxb>"
                }
              }
            }
          }
        ],
        "operationId": "EstamentoCuestionarioxbController.delete"
      }
    },
    "/getDepartments": {
      "get": {
        "x-controller-name": "FiltrosController",
        "x-operation-name": "adminDepartmentsByUser",
        "tags": [
          "FiltrosController"
        ],
        "responses": {
          "200": {
            "description": "Information institutions filter",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        },
        "operationId": "FiltrosController.adminDepartmentsByUser"
      }
    },
    "/getInstitucionesAndDeparmentAndTown": {
      "post": {
        "x-controller-name": "FiltrosController",
        "x-operation-name": "getInstitucionesAndDeparmentAndTown",
        "tags": [
          "FiltrosController"
        ],
        "responses": {
          "200": {
            "description": "Information institutions filter",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "FiltrosController.getInstitucionesAndDeparmentAndTown"
      }
    },
    "/getInstitucionesByUserAndDeparmentAndTown": {
      "post": {
        "x-controller-name": "FiltrosController",
        "x-operation-name": "getInstitucionesByUserAndDeparmentAndTown",
        "tags": [
          "FiltrosController"
        ],
        "responses": {
          "200": {
            "description": "Information institutions filter",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "FiltrosController.getInstitucionesByUserAndDeparmentAndTown"
      }
    },
    "/getMunicipiosAndDeparment": {
      "post": {
        "x-controller-name": "FiltrosController",
        "x-operation-name": "getMunicipiosAndDeparment",
        "tags": [
          "FiltrosController"
        ],
        "responses": {
          "200": {
            "description": "Information towns filter",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "FiltrosController.getMunicipiosAndDeparment"
      }
    },
    "/getMunicipiosByUserAndDeparment": {
      "post": {
        "x-controller-name": "FiltrosController",
        "x-operation-name": "getMunicipiosByUserAndDeparment",
        "tags": [
          "FiltrosController"
        ],
        "responses": {
          "200": {
            "description": "Information towns filter",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "FiltrosController.getMunicipiosByUserAndDeparment"
      }
    },
    "/getSedesByDeparmentAndTownAndInstitution": {
      "post": {
        "x-controller-name": "FiltrosController",
        "x-operation-name": "getSedesByDeparmentAndTownAndInstitution",
        "tags": [
          "FiltrosController"
        ],
        "responses": {
          "200": {
            "description": "Information institutions filter",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "FiltrosController.getSedesByDeparmentAndTownAndInstitution"
      }
    },
    "/getSedesByUserAndDeparmentAndTownAndInstitucion": {
      "post": {
        "x-controller-name": "FiltrosController",
        "x-operation-name": "getSedesByUserAndDeparmentAndTownAndInstitucion",
        "tags": [
          "FiltrosController"
        ],
        "responses": {
          "200": {
            "description": "Information sedes filter",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "FiltrosController.getSedesByUserAndDeparmentAndTownAndInstitucion"
      }
    },
    "/getValueParametrizacion/{key}": {
      "get": {
        "x-controller-name": "ParametrizacionController",
        "x-operation-name": "getParametros",
        "tags": [
          "ParametrizacionController"
        ],
        "responses": {
          "200": {
            "description": "Return value of ParametrizacionController.getParametros"
          }
        },
        "parameters": [
          {
            "name": "key",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "ParametrizacionController.getParametros"
      }
    },
    "/institucion/file": {
      "post": {
        "x-controller-name": "InstitucionController",
        "x-operation-name": "retriveFile",
        "tags": [
          "InstitucionController"
        ],
        "responses": {
          "200": {
            "content": {
              "aplication/json": {
                "schema": {
                  "type": "object"
                }
              }
            },
            "description": "File fot adding institutions"
          }
        },
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "x-parser": "stream",
              "schema": {
                "type": "object"
              }
            }
          },
          "description": "multipart/form-data value.",
          "required": true
        },
        "operationId": "InstitucionController.retriveFile"
      }
    },
    "/institucion/{id}": {
      "put": {
        "x-controller-name": "InstitucionController",
        "x-operation-name": "replaceById",
        "tags": [
          "InstitucionController"
        ],
        "responses": {
          "201": {
            "description": "Created",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Institucion PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "InstitucionController.replaceById"
      },
      "get": {
        "x-controller-name": "InstitucionController",
        "x-operation-name": "findById",
        "tags": [
          "InstitucionController"
        ],
        "responses": {
          "200": {
            "description": "Institucion model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/InstitucionWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "InstitucionController.findById"
      },
      "delete": {
        "x-controller-name": "InstitucionController",
        "x-operation-name": "deleteById",
        "tags": [
          "InstitucionController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Institucion DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "InstitucionController.deleteById"
      }
    },
    "/institucion": {
      "post": {
        "x-controller-name": "InstitucionController",
        "x-operation-name": "create",
        "tags": [
          "InstitucionController"
        ],
        "responses": {
          "200": {
            "description": "Institucion model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Institucion"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "InstitucionController.create"
      },
      "get": {
        "x-controller-name": "InstitucionController",
        "x-operation-name": "find",
        "tags": [
          "InstitucionController"
        ],
        "responses": {
          "200": {
            "description": "Array of Institucion model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/InstitucionWithRelations"
                  }
                }
              }
            }
          }
        },
        "operationId": "InstitucionController.find"
      }
    },
    "/institucions/{id}/sedes": {
      "post": {
        "x-controller-name": "InstitucionSedeController",
        "x-operation-name": "create",
        "tags": [
          "InstitucionSedeController"
        ],
        "responses": {
          "200": {
            "description": "Institucion model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Sede"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewSedeInInstitucion"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "InstitucionSedeController.create"
      },
      "patch": {
        "x-controller-name": "InstitucionSedeController",
        "x-operation-name": "patch",
        "tags": [
          "InstitucionSedeController"
        ],
        "responses": {
          "200": {
            "description": "Institucion.Sede PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Sede.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Sede>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SedePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "InstitucionSedeController.patch"
      },
      "get": {
        "x-controller-name": "InstitucionSedeController",
        "x-operation-name": "find",
        "tags": [
          "InstitucionSedeController"
        ],
        "responses": {
          "200": {
            "description": "Array of Institucion has many Sede",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Sede"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "InstitucionSedeController.find"
      },
      "delete": {
        "x-controller-name": "InstitucionSedeController",
        "x-operation-name": "delete",
        "tags": [
          "InstitucionSedeController"
        ],
        "responses": {
          "200": {
            "description": "Institucion.Sede DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Sede.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Sede>"
                }
              }
            }
          }
        ],
        "operationId": "InstitucionSedeController.delete"
      }
    },
    "/login/validatetoken": {
      "post": {
        "x-controller-name": "UserAccessController",
        "x-operation-name": "loginFromCity",
        "tags": [
          "UserAccessController"
        ],
        "responses": {
          "200": {
            "description": "Token"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "UserAccessController.loginFromCity"
      }
    },
    "/municipio/file": {
      "post": {
        "x-controller-name": "MunicipioController",
        "x-operation-name": "retriveFile",
        "tags": [
          "MunicipioController"
        ],
        "responses": {
          "200": {
            "content": {
              "aplication/json": {
                "schema": {
                  "type": "object"
                }
              }
            },
            "description": "File fot adding municipios"
          }
        },
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "x-parser": "stream",
              "schema": {
                "type": "object"
              }
            }
          },
          "description": "multipart/form-data value.",
          "required": true
        },
        "operationId": "MunicipioController.retriveFile"
      }
    },
    "/municipio/{id}": {
      "put": {
        "x-controller-name": "MunicipioController",
        "x-operation-name": "replaceById",
        "tags": [
          "MunicipioController"
        ],
        "responses": {
          "201": {
            "description": "Created",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Municipio PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MunicipioController.replaceById"
      },
      "get": {
        "x-controller-name": "MunicipioController",
        "x-operation-name": "findById",
        "tags": [
          "MunicipioController"
        ],
        "responses": {
          "200": {
            "description": "Municipio model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MunicipioWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "MunicipioController.findById"
      },
      "delete": {
        "x-controller-name": "MunicipioController",
        "x-operation-name": "deleteById",
        "tags": [
          "MunicipioController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Municipio DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "MunicipioController.deleteById"
      }
    },
    "/municipio": {
      "post": {
        "x-controller-name": "MunicipioController",
        "x-operation-name": "create",
        "tags": [
          "MunicipioController"
        ],
        "responses": {
          "200": {
            "description": "Municipio model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Municipio"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewMunicipio"
              }
            }
          }
        },
        "operationId": "MunicipioController.create"
      },
      "get": {
        "x-controller-name": "MunicipioController",
        "x-operation-name": "find",
        "tags": [
          "MunicipioController"
        ],
        "responses": {
          "200": {
            "description": "Array of Municipio model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/MunicipioWithRelations"
                  }
                }
              }
            }
          }
        },
        "operationId": "MunicipioController.find"
      }
    },
    "/municipios/{id}/sedes": {
      "post": {
        "x-controller-name": "MunicipioSedeController",
        "x-operation-name": "create",
        "tags": [
          "MunicipioSedeController"
        ],
        "responses": {
          "200": {
            "description": "Municipio model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Sede"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewSedeInMunicipio"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MunicipioSedeController.create"
      },
      "patch": {
        "x-controller-name": "MunicipioSedeController",
        "x-operation-name": "patch",
        "tags": [
          "MunicipioSedeController"
        ],
        "responses": {
          "200": {
            "description": "Municipio.Sede PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Sede.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Sede>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SedePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MunicipioSedeController.patch"
      },
      "get": {
        "x-controller-name": "MunicipioSedeController",
        "x-operation-name": "find",
        "tags": [
          "MunicipioSedeController"
        ],
        "responses": {
          "200": {
            "description": "Array of Municipio has many Sede",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Sede"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "MunicipioSedeController.find"
      },
      "delete": {
        "x-controller-name": "MunicipioSedeController",
        "x-operation-name": "delete",
        "tags": [
          "MunicipioSedeController"
        ],
        "responses": {
          "200": {
            "description": "Municipio.Sede DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Sede.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Sede>"
                }
              }
            }
          }
        ],
        "operationId": "MunicipioSedeController.delete"
      }
    },
    "/parametrizacion/{id}": {
      "put": {
        "x-controller-name": "ParametrizacionController",
        "x-operation-name": "replaceById",
        "tags": [
          "ParametrizacionController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Parametrizacion PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ParametrizacionController.replaceById"
      },
      "get": {
        "x-controller-name": "ParametrizacionController",
        "x-operation-name": "findById",
        "tags": [
          "ParametrizacionController"
        ],
        "responses": {
          "200": {
            "description": "Parametrizacion model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ParametrizacionWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Parametrizacion.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ParametrizacionController.findById"
      },
      "delete": {
        "x-controller-name": "ParametrizacionController",
        "x-operation-name": "deleteById",
        "tags": [
          "ParametrizacionController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Parametrizacion DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "ParametrizacionController.deleteById"
      }
    },
    "/parametrizacion": {
      "post": {
        "x-controller-name": "ParametrizacionController",
        "x-operation-name": "create",
        "tags": [
          "ParametrizacionController"
        ],
        "responses": {
          "200": {
            "description": "Parametrizacion model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Parametrizacion"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewParametrizacion"
              }
            }
          }
        },
        "operationId": "ParametrizacionController.create"
      },
      "get": {
        "x-controller-name": "ParametrizacionController",
        "x-operation-name": "find",
        "tags": [
          "ParametrizacionController"
        ],
        "responses": {
          "200": {
            "description": "Array of Parametrizacion model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ParametrizacionWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Parametrizacion.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "ParametrizacionController.find"
      }
    },
    "/ping": {
      "get": {
        "x-controller-name": "PingController",
        "x-operation-name": "ping",
        "tags": [
          "PingController"
        ],
        "responses": {
          "200": {
            "description": "Ping Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PingResponse"
                }
              }
            }
          }
        },
        "operationId": "PingController.ping"
      }
    },
    "/proceso/{id}": {
      "put": {
        "x-controller-name": "ProcesoController",
        "x-operation-name": "replaceById",
        "tags": [
          "ProcesoController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Proceso PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Proceso"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ProcesoController.replaceById"
      },
      "get": {
        "x-controller-name": "ProcesoController",
        "x-operation-name": "findById",
        "tags": [
          "ProcesoController"
        ],
        "responses": {
          "200": {
            "description": "Proceso model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProcesoWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Proceso.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ProcesoController.findById"
      },
      "delete": {
        "x-controller-name": "ProcesoController",
        "x-operation-name": "deleteById",
        "tags": [
          "ProcesoController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Proceso DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "ProcesoController.deleteById"
      }
    },
    "/proceso": {
      "post": {
        "x-controller-name": "ProcesoController",
        "x-operation-name": "create",
        "tags": [
          "ProcesoController"
        ],
        "responses": {
          "200": {
            "description": "Proceso model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Proceso"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewProceso"
              }
            }
          }
        },
        "operationId": "ProcesoController.create"
      },
      "get": {
        "x-controller-name": "ProcesoController",
        "x-operation-name": "find",
        "tags": [
          "ProcesoController"
        ],
        "responses": {
          "200": {
            "description": "Array of Proceso model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ProcesoWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Proceso.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "ProcesoController.find"
      }
    },
    "/procesos/{id}/variables": {
      "post": {
        "x-controller-name": "ProcesoVariableController",
        "x-operation-name": "create",
        "tags": [
          "ProcesoVariableController"
        ],
        "responses": {
          "200": {
            "description": "Proceso model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Variable"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewVariableInProceso"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ProcesoVariableController.create"
      },
      "patch": {
        "x-controller-name": "ProcesoVariableController",
        "x-operation-name": "patch",
        "tags": [
          "ProcesoVariableController"
        ],
        "responses": {
          "200": {
            "description": "Proceso.Variable PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Variable.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Variable>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/VariablePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ProcesoVariableController.patch"
      },
      "get": {
        "x-controller-name": "ProcesoVariableController",
        "x-operation-name": "find",
        "tags": [
          "ProcesoVariableController"
        ],
        "responses": {
          "200": {
            "description": "Array of Proceso has many Variable",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Variable"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "ProcesoVariableController.find"
      },
      "delete": {
        "x-controller-name": "ProcesoVariableController",
        "x-operation-name": "delete",
        "tags": [
          "ProcesoVariableController"
        ],
        "responses": {
          "200": {
            "description": "Proceso.Variable DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Variable.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Variable>"
                }
              }
            }
          }
        ],
        "operationId": "ProcesoVariableController.delete"
      }
    },
    "/reporteExcelEjecution": {
      "post": {
        "x-controller-name": "ReportesController",
        "x-operation-name": "getReporteExcelEjecution",
        "tags": [
          "ReportesController"
        ],
        "responses": {
          "200": {
            "description": "Reportes del indice de inclusión",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "ReportesController.getReporteExcelEjecution"
      }
    },
    "/reporteZipMunicipio": {
      "post": {
        "x-controller-name": "ReportesController",
        "x-operation-name": "getReporteZipMunicipio",
        "tags": [
          "ReportesController"
        ],
        "responses": {
          "200": {
            "description": "Reportes del indice de inclusión",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "ReportesController.getReporteZipMunicipio"
      }
    },
    "/reportepdf": {
      "post": {
        "x-controller-name": "ReportesController",
        "x-operation-name": "getReporterPdf",
        "tags": [
          "ReportesController"
        ],
        "responses": {
          "200": {
            "description": "Reportes del indice de inclusión",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "ReportesController.getReporterPdf"
      }
    },
    "/reportepdfInstitucion": {
      "post": {
        "x-controller-name": "ReportesController",
        "x-operation-name": "getReporterPdfInstituto",
        "tags": [
          "ReportesController"
        ],
        "responses": {
          "200": {
            "description": "Reportes del indice de inclusión",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "ReportesController.getReporterPdfInstituto"
      }
    },
    "/reportepdfSede": {
      "post": {
        "x-controller-name": "ReportesController",
        "x-operation-name": "getReporterPdfSede",
        "tags": [
          "ReportesController"
        ],
        "responses": {
          "200": {
            "description": "Reportes del indice de inclusión",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "ReportesController.getReporterPdfSede"
      }
    },
    "/reporteword": {
      "post": {
        "x-controller-name": "ReportesController",
        "x-operation-name": "getReporterWord",
        "tags": [
          "ReportesController"
        ],
        "responses": {
          "200": {
            "description": "Reportes del indice de inclusión",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "ReportesController.getReporterWord"
      }
    },
    "/reset-password/finish": {
      "put": {
        "x-controller-name": "UserAccessController",
        "x-operation-name": "resetPasswordFinish",
        "tags": [
          "UserAccessController"
        ],
        "responses": {
          "200": {
            "description": "Return value of UserAccessController.resetPasswordFinish"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/KeyAndPassword"
              }
            }
          }
        },
        "operationId": "UserAccessController.resetPasswordFinish"
      }
    },
    "/reset-password/init": {
      "post": {
        "x-controller-name": "UserAccessController",
        "x-operation-name": "resetPasswordInit",
        "tags": [
          "UserAccessController"
        ],
        "responses": {
          "200": {
            "description": "Return value of UserAccessController.resetPasswordInit"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ResetPasswordInit"
              }
            }
          }
        },
        "operationId": "UserAccessController.resetPasswordInit"
      }
    },
    "/sede/file": {
      "post": {
        "x-controller-name": "SedeController",
        "x-operation-name": "retriveFile",
        "tags": [
          "SedeController"
        ],
        "responses": {
          "200": {
            "content": {
              "aplication/json": {
                "schema": {
                  "type": "object"
                }
              }
            },
            "description": "File fot adding sedes"
          }
        },
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "x-parser": "stream",
              "schema": {
                "type": "object"
              }
            }
          },
          "description": "multipart/form-data value.",
          "required": true
        },
        "operationId": "SedeController.retriveFile"
      }
    },
    "/sedes/{id}/cuestionarioxas": {
      "post": {
        "x-controller-name": "SedeCuestionarioxaController",
        "x-operation-name": "create",
        "tags": [
          "SedeCuestionarioxaController"
        ],
        "responses": {
          "200": {
            "description": "Sede model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Cuestionarioxa"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewCuestionarioxaInSede"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "SedeCuestionarioxaController.create"
      },
      "patch": {
        "x-controller-name": "SedeCuestionarioxaController",
        "x-operation-name": "patch",
        "tags": [
          "SedeCuestionarioxaController"
        ],
        "responses": {
          "200": {
            "description": "Sede.Cuestionarioxa PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Cuestionarioxa.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Cuestionarioxa>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CuestionarioxaPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "SedeCuestionarioxaController.patch"
      },
      "get": {
        "x-controller-name": "SedeCuestionarioxaController",
        "x-operation-name": "find",
        "tags": [
          "SedeCuestionarioxaController"
        ],
        "responses": {
          "200": {
            "description": "Array of Sede has many Cuestionarioxa",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Cuestionarioxa"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "SedeCuestionarioxaController.find"
      },
      "delete": {
        "x-controller-name": "SedeCuestionarioxaController",
        "x-operation-name": "delete",
        "tags": [
          "SedeCuestionarioxaController"
        ],
        "responses": {
          "200": {
            "description": "Sede.Cuestionarioxa DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Cuestionarioxa.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Cuestionarioxa>"
                }
              }
            }
          }
        ],
        "operationId": "SedeCuestionarioxaController.delete"
      }
    },
    "/sedes/{id}/cuestionarioxbs": {
      "post": {
        "x-controller-name": "SedeCuestionarioxbController",
        "x-operation-name": "create",
        "tags": [
          "SedeCuestionarioxbController"
        ],
        "responses": {
          "200": {
            "description": "Sede model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Cuestionarioxb"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewCuestionarioxbInSede"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "SedeCuestionarioxbController.create"
      },
      "patch": {
        "x-controller-name": "SedeCuestionarioxbController",
        "x-operation-name": "patch",
        "tags": [
          "SedeCuestionarioxbController"
        ],
        "responses": {
          "200": {
            "description": "Sede.Cuestionarioxb PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Cuestionarioxb.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Cuestionarioxb>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CuestionarioxbPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "SedeCuestionarioxbController.patch"
      },
      "get": {
        "x-controller-name": "SedeCuestionarioxbController",
        "x-operation-name": "find",
        "tags": [
          "SedeCuestionarioxbController"
        ],
        "responses": {
          "200": {
            "description": "Array of Sede has many Cuestionarioxb",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Cuestionarioxb"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "SedeCuestionarioxbController.find"
      },
      "delete": {
        "x-controller-name": "SedeCuestionarioxbController",
        "x-operation-name": "delete",
        "tags": [
          "SedeCuestionarioxbController"
        ],
        "responses": {
          "200": {
            "description": "Sede.Cuestionarioxb DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Cuestionarioxb.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Cuestionarioxb>"
                }
              }
            }
          }
        ],
        "operationId": "SedeCuestionarioxbController.delete"
      }
    },
    "/sedes/{id}": {
      "put": {
        "x-controller-name": "SedeController",
        "x-operation-name": "replaceById",
        "tags": [
          "SedeController"
        ],
        "responses": {
          "201": {
            "description": "Created",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Sede PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "SedeController.replaceById"
      },
      "get": {
        "x-controller-name": "SedeController",
        "x-operation-name": "findById",
        "tags": [
          "SedeController"
        ],
        "responses": {
          "200": {
            "description": "Sede model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SedeWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "SedeController.findById"
      },
      "delete": {
        "x-controller-name": "SedeController",
        "x-operation-name": "deleteById",
        "tags": [
          "SedeController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Sede DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "SedeController.deleteById"
      }
    },
    "/sedes": {
      "post": {
        "x-controller-name": "SedeController",
        "x-operation-name": "create",
        "tags": [
          "SedeController"
        ],
        "responses": {
          "200": {
            "description": "Sede model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Sede"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewSede"
              }
            }
          }
        },
        "operationId": "SedeController.create"
      },
      "get": {
        "x-controller-name": "SedeController",
        "x-operation-name": "find",
        "tags": [
          "SedeController"
        ],
        "responses": {
          "200": {
            "description": "Array of Sede model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/SedeWithRelations"
                  }
                }
              }
            }
          }
        },
        "operationId": "SedeController.find"
      }
    },
    "/sedesByInstitucion/{id}": {
      "get": {
        "x-controller-name": "SedeController",
        "x-operation-name": "findByIdInstitucion",
        "tags": [
          "SedeController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Sede model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "SedeController.findByIdInstitucion"
      }
    },
    "/users/byinstitucion/{id}": {
      "put": {
        "x-controller-name": "UserController",
        "x-operation-name": "replaceByIdInstitucion",
        "tags": [
          "UserController"
        ],
        "responses": {
          "201": {
            "description": "Created",
            "content": {
              "application/json": {
                "schema": {
                  "description": "User PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.replaceByIdInstitucion"
      }
    },
    "/users/byinstitucion": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "createByInstitucion",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "User model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/User"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "UserController.createByInstitucion"
      }
    },
    "/users/bysede/{id}": {
      "put": {
        "x-controller-name": "UserController",
        "x-operation-name": "replaceByIdSede",
        "tags": [
          "UserController"
        ],
        "responses": {
          "201": {
            "description": "Created",
            "content": {
              "application/json": {
                "schema": {
                  "description": "User PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.replaceByIdSede"
      }
    },
    "/users/bysede": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "createBySede",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "User model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/User"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "UserController.createBySede"
      }
    },
    "/users/file/byinstitution": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "retriveFileByInstitution",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "content": {
              "aplication/json": {
                "schema": {
                  "type": "object"
                }
              }
            },
            "description": "File fot adding users"
          }
        },
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "x-parser": "stream",
              "schema": {
                "type": "object"
              }
            }
          },
          "description": "multipart/form-data value.",
          "required": true
        },
        "operationId": "UserController.retriveFileByInstitution"
      }
    },
    "/users/file/bysede": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "retriveFileBySede",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "content": {
              "aplication/json": {
                "schema": {
                  "type": "object"
                }
              }
            },
            "description": "File fot adding users"
          }
        },
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "x-parser": "stream",
              "schema": {
                "type": "object"
              }
            }
          },
          "description": "multipart/form-data value.",
          "required": true
        },
        "operationId": "UserController.retriveFileBySede"
      }
    },
    "/users/login": {
      "post": {
        "x-controller-name": "UserAccessController",
        "x-operation-name": "login",
        "tags": [
          "UserAccessController"
        ],
        "responses": {
          "200": {
            "description": "Token",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "token": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "UserAccessController.login"
      }
    },
    "/users/sedes/{id}": {
      "get": {
        "x-controller-name": "UserController",
        "x-operation-name": "findUserSedes",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "User model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "UserController.findUserSedes"
      }
    },
    "/users/signup": {
      "post": {
        "x-controller-name": "UserAccessController",
        "x-operation-name": "signup",
        "tags": [
          "UserAccessController"
        ],
        "responses": {
          "200": {
            "description": "User",
            "content": {}
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewUser"
              }
            }
          }
        },
        "operationId": "UserAccessController.signup"
      }
    },
    "/users/{id}/sedes": {
      "post": {
        "x-controller-name": "UserSedeController",
        "x-operation-name": "create",
        "tags": [
          "UserSedeController"
        ],
        "responses": {
          "200": {
            "description": "create a Sede model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Sede"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewSedeInUser"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserSedeController.create"
      },
      "patch": {
        "x-controller-name": "UserSedeController",
        "x-operation-name": "patch",
        "tags": [
          "UserSedeController"
        ],
        "responses": {
          "200": {
            "description": "User.Sede PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Sede.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Sede>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SedePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserSedeController.patch"
      },
      "get": {
        "x-controller-name": "UserSedeController",
        "x-operation-name": "find",
        "tags": [
          "UserSedeController"
        ],
        "responses": {
          "200": {
            "description": "Array of User has many Sede through UserHasSede",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Sede"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "UserSedeController.find"
      },
      "delete": {
        "x-controller-name": "UserSedeController",
        "x-operation-name": "delete",
        "tags": [
          "UserSedeController"
        ],
        "responses": {
          "200": {
            "description": "User.Sede DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Sede.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Sede>"
                }
              }
            }
          }
        ],
        "operationId": "UserSedeController.delete"
      }
    },
    "/users/{id}": {
      "put": {
        "x-controller-name": "UserController",
        "x-operation-name": "replaceById",
        "tags": [
          "UserController"
        ],
        "responses": {
          "201": {
            "description": "Created",
            "content": {
              "application/json": {
                "schema": {
                  "description": "User PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/User"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.replaceById"
      },
      "get": {
        "x-controller-name": "UserController",
        "x-operation-name": "findById",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "User model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/UserWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "UserController.findById"
      },
      "delete": {
        "x-controller-name": "UserController",
        "x-operation-name": "deleteById",
        "tags": [
          "UserController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "User DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "UserController.deleteById"
      }
    },
    "/users": {
      "get": {
        "x-controller-name": "UserController",
        "x-operation-name": "find",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Array of User model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/User"
                  }
                }
              }
            }
          }
        },
        "operationId": "UserController.find"
      }
    },
    "/variable/{id}": {
      "put": {
        "x-controller-name": "VariableController",
        "x-operation-name": "replaceById",
        "tags": [
          "VariableController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Variable PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Variable"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "VariableController.replaceById"
      },
      "get": {
        "x-controller-name": "VariableController",
        "x-operation-name": "findById",
        "tags": [
          "VariableController"
        ],
        "responses": {
          "200": {
            "description": "Variable model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/VariableWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Variable.Filter"
                }
              }
            }
          }
        ],
        "operationId": "VariableController.findById"
      },
      "delete": {
        "x-controller-name": "VariableController",
        "x-operation-name": "deleteById",
        "tags": [
          "VariableController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Variable DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "VariableController.deleteById"
      }
    },
    "/variable": {
      "post": {
        "x-controller-name": "VariableController",
        "x-operation-name": "create",
        "tags": [
          "VariableController"
        ],
        "responses": {
          "200": {
            "description": "Variable model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Variable"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewVariable"
              }
            }
          }
        },
        "operationId": "VariableController.create"
      },
      "get": {
        "x-controller-name": "VariableController",
        "x-operation-name": "find",
        "tags": [
          "VariableController"
        ],
        "responses": {
          "200": {
            "description": "Array of Variable model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/VariableWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Variable.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "VariableController.find"
      }
    },
    "/year/visualizacion/{idYear}": {
      "get": {
        "x-controller-name": "YearController",
        "x-operation-name": "dataYearEjecutionById",
        "tags": [
          "YearController"
        ],
        "responses": {
          "200": {
            "description": "Array of years model instances plus number of ejecutions",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        },
        "parameters": [
          {
            "name": "idYear",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "YearController.dataYearEjecutionById"
      }
    },
    "/year/visualizacion": {
      "get": {
        "x-controller-name": "YearController",
        "x-operation-name": "dataYearEjecution",
        "tags": [
          "YearController"
        ],
        "responses": {
          "200": {
            "description": "Array of years model instances plus number of ejecutions",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        },
        "operationId": "YearController.dataYearEjecution"
      }
    },
    "/year/{id}": {
      "put": {
        "x-controller-name": "YearController",
        "x-operation-name": "replaceById",
        "tags": [
          "YearController"
        ],
        "responses": {
          "201": {
            "description": "Created",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Year PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "YearController.replaceById"
      },
      "get": {
        "x-controller-name": "YearController",
        "x-operation-name": "findById",
        "tags": [
          "YearController"
        ],
        "responses": {
          "200": {
            "description": "Year model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/YearWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Year.Filter"
                }
              }
            }
          }
        ],
        "operationId": "YearController.findById"
      },
      "delete": {
        "x-controller-name": "YearController",
        "x-operation-name": "deleteById",
        "tags": [
          "YearController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Year DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "YearController.deleteById"
      }
    },
    "/year": {
      "post": {
        "x-controller-name": "YearController",
        "x-operation-name": "create",
        "tags": [
          "YearController"
        ],
        "responses": {
          "200": {
            "description": "year model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Year"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewYear"
              }
            }
          }
        },
        "operationId": "YearController.create"
      },
      "get": {
        "x-controller-name": "YearController",
        "x-operation-name": "find",
        "tags": [
          "YearController"
        ],
        "responses": {
          "200": {
            "description": "Array of Year model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/YearWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Year.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "YearController.find"
      }
    },
    "/years/{id}/ejecucions": {
      "post": {
        "x-controller-name": "YearEjecucionController",
        "x-operation-name": "create",
        "tags": [
          "YearEjecucionController"
        ],
        "responses": {
          "200": {
            "description": "Year model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ejecucion"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewEjecucionInYear"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "YearEjecucionController.create"
      },
      "patch": {
        "x-controller-name": "YearEjecucionController",
        "x-operation-name": "patch",
        "tags": [
          "YearEjecucionController"
        ],
        "responses": {
          "200": {
            "description": "Year.Ejecucion PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Ejecucion.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Ejecucion>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/EjecucionPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "YearEjecucionController.patch"
      },
      "get": {
        "x-controller-name": "YearEjecucionController",
        "x-operation-name": "find",
        "tags": [
          "YearEjecucionController"
        ],
        "responses": {
          "200": {
            "description": "Array of Year has many Ejecucion",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Ejecucion"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "YearEjecucionController.find"
      },
      "delete": {
        "x-controller-name": "YearEjecucionController",
        "x-operation-name": "delete",
        "tags": [
          "YearEjecucionController"
        ],
        "responses": {
          "200": {
            "description": "Year.Ejecucion DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Ejecucion.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Ejecucion>"
                }
              }
            }
          }
        ],
        "operationId": "YearEjecucionController.delete"
      }
    }
  },
  "servers": [
    {
      "url": "https://api-indice.cityknowpro.com"
    }
  ],
  "components": {
    "schemas": {
      "Proceso": {
        "title": "Proceso",
        "type": "object",
        "properties": {
          "idProcess": {
            "type": "number"
          },
          "name_process": {
            "type": "string"
          },
          "code": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "areaId": {
            "type": "number"
          }
        },
        "required": [
          "name_process",
          "code",
          "date_creation",
          "areaId"
        ],
        "additionalProperties": false
      },
      "NewProcesoInArea": {
        "title": "NewProcesoInArea",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<Proceso, 'idProcess'>, 'areaId'>, schemaOptions: { title: 'NewProcesoInArea', exclude: [ 'idProcess' ], optional: [ 'areaId' ] })",
        "properties": {
          "name_process": {
            "type": "string"
          },
          "code": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "areaId": {
            "type": "number"
          }
        },
        "required": [
          "name_process",
          "code",
          "date_creation"
        ],
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<Proceso, 'idProcess'>, 'areaId'>"
      },
      "ProcesoPartial": {
        "title": "ProcesoPartial",
        "type": "object",
        "description": "(tsType: Partial<Proceso>, schemaOptions: { partial: true })",
        "properties": {
          "idProcess": {
            "type": "number"
          },
          "name_process": {
            "type": "string"
          },
          "code": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "areaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Proceso>"
      },
      "Area": {
        "title": "Area",
        "type": "object",
        "properties": {
          "idArea": {
            "type": "number"
          },
          "name_area": {
            "type": "string"
          },
          "code": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "name_area",
          "code",
          "date_creation"
        ],
        "additionalProperties": false
      },
      "NewArea": {
        "title": "NewArea",
        "type": "object",
        "description": "(tsType: Omit<Area, 'idArea'>, schemaOptions: { title: 'NewArea', exclude: [ 'idArea' ] })",
        "properties": {
          "name_area": {
            "type": "string"
          },
          "code": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "name_area",
          "code",
          "date_creation"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<Area, 'idArea'>"
      },
      "VariableWithRelations": {
        "title": "VariableWithRelations",
        "type": "object",
        "description": "(tsType: VariableWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "idVariable": {
            "type": "number"
          },
          "name_variable": {
            "type": "string"
          },
          "code": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "procesoId": {
            "type": "number"
          }
        },
        "required": [
          "name_variable",
          "code",
          "date_creation",
          "procesoId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "VariableWithRelations"
      },
      "ProcesoWithRelations": {
        "title": "ProcesoWithRelations",
        "type": "object",
        "description": "(tsType: ProcesoWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "idProcess": {
            "type": "number"
          },
          "name_process": {
            "type": "string"
          },
          "code": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "areaId": {
            "type": "number"
          },
          "variables": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/VariableWithRelations"
            }
          }
        },
        "required": [
          "name_process",
          "code",
          "date_creation",
          "areaId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "ProcesoWithRelations"
      },
      "AreaWithRelations": {
        "title": "AreaWithRelations",
        "type": "object",
        "description": "(tsType: AreaWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "idArea": {
            "type": "number"
          },
          "name_area": {
            "type": "string"
          },
          "code": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "procesos": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProcesoWithRelations"
            }
          }
        },
        "required": [
          "name_area",
          "code",
          "date_creation"
        ],
        "additionalProperties": false,
        "x-typescript-type": "AreaWithRelations"
      },
      "Cuestionarioxa": {
        "title": "Cuestionarioxa",
        "type": "object",
        "properties": {
          "idCuestionarioA": {
            "type": "number"
          },
          "A11": {
            "type": "number"
          },
          "A12": {
            "type": "number"
          },
          "A13": {
            "type": "number"
          },
          "A21": {
            "type": "number"
          },
          "A22": {
            "type": "number"
          },
          "A23": {
            "type": "number"
          },
          "A24": {
            "type": "number"
          },
          "A25": {
            "type": "number"
          },
          "A31": {
            "type": "number"
          },
          "A32": {
            "type": "number"
          },
          "A33": {
            "type": "number"
          },
          "A34": {
            "type": "number"
          },
          "A35": {
            "type": "number"
          },
          "A36": {
            "type": "number"
          },
          "A41": {
            "type": "number"
          },
          "A42": {
            "type": "number"
          },
          "A43": {
            "type": "number"
          },
          "A44": {
            "type": "number"
          },
          "A51": {
            "type": "number"
          },
          "A52": {
            "type": "number"
          },
          "A53": {
            "type": "number"
          },
          "A54": {
            "type": "number"
          },
          "A55": {
            "type": "number"
          },
          "A56": {
            "type": "number"
          },
          "A57": {
            "type": "number"
          },
          "A58": {
            "type": "number"
          },
          "A61": {
            "type": "number"
          },
          "A62": {
            "type": "number"
          },
          "A63": {
            "type": "number"
          },
          "A64": {
            "type": "number"
          },
          "B11": {
            "type": "number"
          },
          "B12": {
            "type": "number"
          },
          "B13": {
            "type": "number"
          },
          "B23": {
            "type": "number"
          },
          "B24": {
            "type": "number"
          },
          "B31": {
            "type": "number"
          },
          "B32": {
            "type": "number"
          },
          "B33": {
            "type": "number"
          },
          "B34": {
            "type": "number"
          },
          "B41": {
            "type": "number"
          },
          "B42": {
            "type": "number"
          },
          "B43": {
            "type": "number"
          },
          "B44": {
            "type": "number"
          },
          "B45": {
            "type": "number"
          },
          "B46": {
            "type": "number"
          },
          "C11": {
            "type": "number"
          },
          "C12": {
            "type": "number"
          },
          "C13": {
            "type": "number"
          },
          "C22": {
            "type": "number"
          },
          "C23": {
            "type": "number"
          },
          "C26": {
            "type": "number"
          },
          "C27": {
            "type": "number"
          },
          "C31": {
            "type": "number"
          },
          "C41": {
            "type": "number"
          },
          "C42": {
            "type": "number"
          },
          "C43": {
            "type": "number"
          },
          "C44": {
            "type": "number"
          },
          "C45": {
            "type": "number"
          },
          "C46": {
            "type": "number"
          },
          "C47": {
            "type": "number"
          },
          "C48": {
            "type": "number"
          },
          "C49": {
            "type": "number"
          },
          "C410": {
            "type": "number"
          },
          "C52": {
            "type": "number"
          },
          "D11": {
            "type": "number"
          },
          "D21": {
            "type": "number"
          },
          "D22": {
            "type": "number"
          },
          "D23": {
            "type": "number"
          },
          "D31": {
            "type": "number"
          },
          "D32": {
            "type": "number"
          },
          "D33": {
            "type": "number"
          },
          "D41": {
            "type": "number"
          },
          "D42": {
            "type": "number"
          },
          "D43": {
            "type": "number"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "last_name": {
            "type": "string"
          },
          "estamentoId": {
            "type": "number"
          },
          "ejecucionId": {
            "type": "number"
          },
          "sedeId": {
            "type": "number"
          }
        },
        "required": [
          "A11",
          "A12",
          "A13",
          "A21",
          "A22",
          "A23",
          "A24",
          "A25",
          "A31",
          "A32",
          "A33",
          "A34",
          "A35",
          "A36",
          "A41",
          "A42",
          "A43",
          "A44",
          "A51",
          "A52",
          "A53",
          "A54",
          "A55",
          "A56",
          "A57",
          "A58",
          "A61",
          "A62",
          "A63",
          "A64",
          "B11",
          "B12",
          "B13",
          "B23",
          "B24",
          "B31",
          "B32",
          "B33",
          "B34",
          "B41",
          "B42",
          "B43",
          "B44",
          "B45",
          "B46",
          "C11",
          "C12",
          "C13",
          "C22",
          "C23",
          "C26",
          "C27",
          "C31",
          "C41",
          "C42",
          "C43",
          "C44",
          "C45",
          "C46",
          "C47",
          "C48",
          "C49",
          "C410",
          "C52",
          "D11",
          "D21",
          "D22",
          "D23",
          "D31",
          "D32",
          "D33",
          "D41",
          "D42",
          "D43",
          "date_creation",
          "estamentoId",
          "ejecucionId"
        ],
        "additionalProperties": false
      },
      "CuestionarioxaWithRelations": {
        "title": "CuestionarioxaWithRelations",
        "type": "object",
        "description": "(tsType: CuestionarioxaWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "idCuestionarioA": {
            "type": "number"
          },
          "A11": {
            "type": "number"
          },
          "A12": {
            "type": "number"
          },
          "A13": {
            "type": "number"
          },
          "A21": {
            "type": "number"
          },
          "A22": {
            "type": "number"
          },
          "A23": {
            "type": "number"
          },
          "A24": {
            "type": "number"
          },
          "A25": {
            "type": "number"
          },
          "A31": {
            "type": "number"
          },
          "A32": {
            "type": "number"
          },
          "A33": {
            "type": "number"
          },
          "A34": {
            "type": "number"
          },
          "A35": {
            "type": "number"
          },
          "A36": {
            "type": "number"
          },
          "A41": {
            "type": "number"
          },
          "A42": {
            "type": "number"
          },
          "A43": {
            "type": "number"
          },
          "A44": {
            "type": "number"
          },
          "A51": {
            "type": "number"
          },
          "A52": {
            "type": "number"
          },
          "A53": {
            "type": "number"
          },
          "A54": {
            "type": "number"
          },
          "A55": {
            "type": "number"
          },
          "A56": {
            "type": "number"
          },
          "A57": {
            "type": "number"
          },
          "A58": {
            "type": "number"
          },
          "A61": {
            "type": "number"
          },
          "A62": {
            "type": "number"
          },
          "A63": {
            "type": "number"
          },
          "A64": {
            "type": "number"
          },
          "B11": {
            "type": "number"
          },
          "B12": {
            "type": "number"
          },
          "B13": {
            "type": "number"
          },
          "B23": {
            "type": "number"
          },
          "B24": {
            "type": "number"
          },
          "B31": {
            "type": "number"
          },
          "B32": {
            "type": "number"
          },
          "B33": {
            "type": "number"
          },
          "B34": {
            "type": "number"
          },
          "B41": {
            "type": "number"
          },
          "B42": {
            "type": "number"
          },
          "B43": {
            "type": "number"
          },
          "B44": {
            "type": "number"
          },
          "B45": {
            "type": "number"
          },
          "B46": {
            "type": "number"
          },
          "C11": {
            "type": "number"
          },
          "C12": {
            "type": "number"
          },
          "C13": {
            "type": "number"
          },
          "C22": {
            "type": "number"
          },
          "C23": {
            "type": "number"
          },
          "C26": {
            "type": "number"
          },
          "C27": {
            "type": "number"
          },
          "C31": {
            "type": "number"
          },
          "C41": {
            "type": "number"
          },
          "C42": {
            "type": "number"
          },
          "C43": {
            "type": "number"
          },
          "C44": {
            "type": "number"
          },
          "C45": {
            "type": "number"
          },
          "C46": {
            "type": "number"
          },
          "C47": {
            "type": "number"
          },
          "C48": {
            "type": "number"
          },
          "C49": {
            "type": "number"
          },
          "C410": {
            "type": "number"
          },
          "C52": {
            "type": "number"
          },
          "D11": {
            "type": "number"
          },
          "D21": {
            "type": "number"
          },
          "D22": {
            "type": "number"
          },
          "D23": {
            "type": "number"
          },
          "D31": {
            "type": "number"
          },
          "D32": {
            "type": "number"
          },
          "D33": {
            "type": "number"
          },
          "D41": {
            "type": "number"
          },
          "D42": {
            "type": "number"
          },
          "D43": {
            "type": "number"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "last_name": {
            "type": "string"
          },
          "estamentoId": {
            "type": "number"
          },
          "ejecucionId": {
            "type": "number"
          },
          "sedeId": {
            "type": "number"
          }
        },
        "required": [
          "A11",
          "A12",
          "A13",
          "A21",
          "A22",
          "A23",
          "A24",
          "A25",
          "A31",
          "A32",
          "A33",
          "A34",
          "A35",
          "A36",
          "A41",
          "A42",
          "A43",
          "A44",
          "A51",
          "A52",
          "A53",
          "A54",
          "A55",
          "A56",
          "A57",
          "A58",
          "A61",
          "A62",
          "A63",
          "A64",
          "B11",
          "B12",
          "B13",
          "B23",
          "B24",
          "B31",
          "B32",
          "B33",
          "B34",
          "B41",
          "B42",
          "B43",
          "B44",
          "B45",
          "B46",
          "C11",
          "C12",
          "C13",
          "C22",
          "C23",
          "C26",
          "C27",
          "C31",
          "C41",
          "C42",
          "C43",
          "C44",
          "C45",
          "C46",
          "C47",
          "C48",
          "C49",
          "C410",
          "C52",
          "D11",
          "D21",
          "D22",
          "D23",
          "D31",
          "D32",
          "D33",
          "D41",
          "D42",
          "D43",
          "date_creation",
          "estamentoId",
          "ejecucionId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CuestionarioxaWithRelations"
      },
      "Cuestionarioxb": {
        "title": "Cuestionarioxb",
        "type": "object",
        "properties": {
          "idCuestionarioB": {
            "type": "number"
          },
          "A11": {
            "type": "number"
          },
          "A12": {
            "type": "number"
          },
          "A13": {
            "type": "number"
          },
          "A21": {
            "type": "number"
          },
          "A24": {
            "type": "number"
          },
          "A31": {
            "type": "number"
          },
          "A32": {
            "type": "number"
          },
          "A33": {
            "type": "number"
          },
          "A34": {
            "type": "number"
          },
          "A35": {
            "type": "number"
          },
          "A36": {
            "type": "number"
          },
          "A41": {
            "type": "number"
          },
          "A42": {
            "type": "number"
          },
          "A43": {
            "type": "number"
          },
          "A44": {
            "type": "number"
          },
          "A51": {
            "type": "number"
          },
          "A52": {
            "type": "number"
          },
          "A53": {
            "type": "number"
          },
          "A54": {
            "type": "number"
          },
          "A55": {
            "type": "number"
          },
          "A56": {
            "type": "number"
          },
          "A57": {
            "type": "number"
          },
          "A58": {
            "type": "number"
          },
          "A61": {
            "type": "number"
          },
          "A63": {
            "type": "number"
          },
          "B14": {
            "type": "number"
          },
          "B21": {
            "type": "number"
          },
          "B22": {
            "type": "number"
          },
          "B23": {
            "type": "number"
          },
          "B24": {
            "type": "number"
          },
          "B31": {
            "type": "number"
          },
          "B32": {
            "type": "number"
          },
          "B33": {
            "type": "number"
          },
          "B34": {
            "type": "number"
          },
          "B41": {
            "type": "number"
          },
          "B42": {
            "type": "number"
          },
          "B43": {
            "type": "number"
          },
          "B44": {
            "type": "number"
          },
          "B45": {
            "type": "number"
          },
          "D11": {
            "type": "number"
          },
          "D21": {
            "type": "number"
          },
          "D22": {
            "type": "number"
          },
          "D23": {
            "type": "number"
          },
          "D31": {
            "type": "number"
          },
          "D32": {
            "type": "number"
          },
          "D33": {
            "type": "number"
          },
          "D41": {
            "type": "number"
          },
          "D42": {
            "type": "number"
          },
          "D43": {
            "type": "number"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "last_name": {
            "type": "string"
          },
          "estamentoId": {
            "type": "number"
          },
          "ejecucionId": {
            "type": "number"
          },
          "sedeId": {
            "type": "number"
          }
        },
        "required": [
          "A11",
          "A12",
          "A13",
          "A21",
          "A24",
          "A31",
          "A32",
          "A33",
          "A34",
          "A35",
          "A36",
          "A41",
          "A42",
          "A43",
          "A44",
          "A51",
          "A52",
          "A53",
          "A54",
          "A55",
          "A56",
          "A57",
          "A58",
          "A61",
          "A63",
          "B14",
          "B21",
          "B22",
          "B23",
          "B24",
          "B31",
          "B32",
          "B33",
          "B34",
          "B41",
          "B42",
          "B43",
          "B44",
          "B45",
          "D11",
          "D21",
          "D22",
          "D23",
          "D31",
          "D32",
          "D33",
          "D41",
          "D42",
          "D43",
          "date_creation",
          "estamentoId",
          "ejecucionId"
        ],
        "additionalProperties": false
      },
      "CuestionarioxbWithRelations": {
        "title": "CuestionarioxbWithRelations",
        "type": "object",
        "description": "(tsType: CuestionarioxbWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "idCuestionarioB": {
            "type": "number"
          },
          "A11": {
            "type": "number"
          },
          "A12": {
            "type": "number"
          },
          "A13": {
            "type": "number"
          },
          "A21": {
            "type": "number"
          },
          "A24": {
            "type": "number"
          },
          "A31": {
            "type": "number"
          },
          "A32": {
            "type": "number"
          },
          "A33": {
            "type": "number"
          },
          "A34": {
            "type": "number"
          },
          "A35": {
            "type": "number"
          },
          "A36": {
            "type": "number"
          },
          "A41": {
            "type": "number"
          },
          "A42": {
            "type": "number"
          },
          "A43": {
            "type": "number"
          },
          "A44": {
            "type": "number"
          },
          "A51": {
            "type": "number"
          },
          "A52": {
            "type": "number"
          },
          "A53": {
            "type": "number"
          },
          "A54": {
            "type": "number"
          },
          "A55": {
            "type": "number"
          },
          "A56": {
            "type": "number"
          },
          "A57": {
            "type": "number"
          },
          "A58": {
            "type": "number"
          },
          "A61": {
            "type": "number"
          },
          "A63": {
            "type": "number"
          },
          "B14": {
            "type": "number"
          },
          "B21": {
            "type": "number"
          },
          "B22": {
            "type": "number"
          },
          "B23": {
            "type": "number"
          },
          "B24": {
            "type": "number"
          },
          "B31": {
            "type": "number"
          },
          "B32": {
            "type": "number"
          },
          "B33": {
            "type": "number"
          },
          "B34": {
            "type": "number"
          },
          "B41": {
            "type": "number"
          },
          "B42": {
            "type": "number"
          },
          "B43": {
            "type": "number"
          },
          "B44": {
            "type": "number"
          },
          "B45": {
            "type": "number"
          },
          "D11": {
            "type": "number"
          },
          "D21": {
            "type": "number"
          },
          "D22": {
            "type": "number"
          },
          "D23": {
            "type": "number"
          },
          "D31": {
            "type": "number"
          },
          "D32": {
            "type": "number"
          },
          "D33": {
            "type": "number"
          },
          "D41": {
            "type": "number"
          },
          "D42": {
            "type": "number"
          },
          "D43": {
            "type": "number"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "last_name": {
            "type": "string"
          },
          "estamentoId": {
            "type": "number"
          },
          "ejecucionId": {
            "type": "number"
          },
          "sedeId": {
            "type": "number"
          }
        },
        "required": [
          "A11",
          "A12",
          "A13",
          "A21",
          "A24",
          "A31",
          "A32",
          "A33",
          "A34",
          "A35",
          "A36",
          "A41",
          "A42",
          "A43",
          "A44",
          "A51",
          "A52",
          "A53",
          "A54",
          "A55",
          "A56",
          "A57",
          "A58",
          "A61",
          "A63",
          "B14",
          "B21",
          "B22",
          "B23",
          "B24",
          "B31",
          "B32",
          "B33",
          "B34",
          "B41",
          "B42",
          "B43",
          "B44",
          "B45",
          "D11",
          "D21",
          "D22",
          "D23",
          "D31",
          "D32",
          "D33",
          "D41",
          "D42",
          "D43",
          "date_creation",
          "estamentoId",
          "ejecucionId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CuestionarioxbWithRelations"
      },
      "Municipio": {
        "title": "Municipio",
        "type": "object",
        "properties": {
          "idTown": {
            "type": "number"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "town_name": {
            "type": "string"
          },
          "departamentoId": {
            "type": "number"
          }
        },
        "required": [
          "date_creation",
          "town_name"
        ],
        "additionalProperties": false
      },
      "NewMunicipioInDepartamento": {
        "title": "NewMunicipioInDepartamento",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<Municipio, 'idTown'>, 'departamentoId'>, schemaOptions: { title: 'NewMunicipioInDepartamento', exclude: [ 'idTown' ], optional: [ 'departamentoId' ] })",
        "properties": {
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "town_name": {
            "type": "string"
          },
          "departamentoId": {
            "type": "number"
          }
        },
        "required": [
          "date_creation",
          "town_name"
        ],
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<Municipio, 'idTown'>, 'departamentoId'>"
      },
      "MunicipioPartial": {
        "title": "MunicipioPartial",
        "type": "object",
        "description": "(tsType: Partial<Municipio>, schemaOptions: { partial: true })",
        "properties": {
          "idTown": {
            "type": "number"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "town_name": {
            "type": "string"
          },
          "departamentoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Municipio>"
      },
      "Departamento": {
        "title": "Departamento",
        "type": "object",
        "properties": {
          "idDepartment": {
            "type": "number"
          },
          "department_name": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "department_name",
          "date_creation"
        ],
        "additionalProperties": false
      },
      "NewDepartamento": {
        "title": "NewDepartamento",
        "type": "object",
        "description": "(tsType: Omit<Departamento, 'idDepartment' | 'date_creation' | 'date_modification'>, schemaOptions: { title: 'NewDepartamento', exclude: [ 'idDepartment', 'date_creation', 'date_modification' ] })",
        "properties": {
          "department_name": {
            "type": "string"
          }
        },
        "required": [
          "department_name"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<Departamento, 'idDepartment' | 'date_creation' | 'date_modification'>"
      },
      "SedeWithRelations": {
        "title": "SedeWithRelations",
        "type": "object",
        "description": "(tsType: SedeWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "idSede": {
            "type": "number"
          },
          "name_sede": {
            "type": "string"
          },
          "consecutivo": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "municipioId": {
            "type": "number"
          },
          "institucionId": {
            "type": "number"
          },
          "cuestionarioxas": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/CuestionarioxaWithRelations"
            }
          },
          "cuestionarioxbs": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/CuestionarioxbWithRelations"
            }
          }
        },
        "required": [
          "name_sede",
          "consecutivo",
          "date_creation"
        ],
        "additionalProperties": false,
        "x-typescript-type": "SedeWithRelations"
      },
      "MunicipioWithRelations": {
        "title": "MunicipioWithRelations",
        "type": "object",
        "description": "(tsType: MunicipioWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "idTown": {
            "type": "number"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "town_name": {
            "type": "string"
          },
          "departamentoId": {
            "type": "number"
          },
          "sedes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/SedeWithRelations"
            }
          }
        },
        "required": [
          "date_creation",
          "town_name"
        ],
        "additionalProperties": false,
        "x-typescript-type": "MunicipioWithRelations"
      },
      "DepartamentoWithRelations": {
        "title": "DepartamentoWithRelations",
        "type": "object",
        "description": "(tsType: DepartamentoWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "idDepartment": {
            "type": "number"
          },
          "department_name": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "municipios": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/MunicipioWithRelations"
            }
          }
        },
        "required": [
          "department_name",
          "date_creation"
        ],
        "additionalProperties": false,
        "x-typescript-type": "DepartamentoWithRelations"
      },
      "NewCuestionarioxaInEjecucion": {
        "title": "NewCuestionarioxaInEjecucion",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<Cuestionarioxa, 'idCuestionarioA'>, 'ejecucionId'>, schemaOptions: { title: 'NewCuestionarioxaInEjecucion', exclude: [ 'idCuestionarioA' ], optional: [ 'ejecucionId' ] })",
        "properties": {
          "A11": {
            "type": "number"
          },
          "A12": {
            "type": "number"
          },
          "A13": {
            "type": "number"
          },
          "A21": {
            "type": "number"
          },
          "A22": {
            "type": "number"
          },
          "A23": {
            "type": "number"
          },
          "A24": {
            "type": "number"
          },
          "A25": {
            "type": "number"
          },
          "A31": {
            "type": "number"
          },
          "A32": {
            "type": "number"
          },
          "A33": {
            "type": "number"
          },
          "A34": {
            "type": "number"
          },
          "A35": {
            "type": "number"
          },
          "A36": {
            "type": "number"
          },
          "A41": {
            "type": "number"
          },
          "A42": {
            "type": "number"
          },
          "A43": {
            "type": "number"
          },
          "A44": {
            "type": "number"
          },
          "A51": {
            "type": "number"
          },
          "A52": {
            "type": "number"
          },
          "A53": {
            "type": "number"
          },
          "A54": {
            "type": "number"
          },
          "A55": {
            "type": "number"
          },
          "A56": {
            "type": "number"
          },
          "A57": {
            "type": "number"
          },
          "A58": {
            "type": "number"
          },
          "A61": {
            "type": "number"
          },
          "A62": {
            "type": "number"
          },
          "A63": {
            "type": "number"
          },
          "A64": {
            "type": "number"
          },
          "B11": {
            "type": "number"
          },
          "B12": {
            "type": "number"
          },
          "B13": {
            "type": "number"
          },
          "B23": {
            "type": "number"
          },
          "B24": {
            "type": "number"
          },
          "B31": {
            "type": "number"
          },
          "B32": {
            "type": "number"
          },
          "B33": {
            "type": "number"
          },
          "B34": {
            "type": "number"
          },
          "B41": {
            "type": "number"
          },
          "B42": {
            "type": "number"
          },
          "B43": {
            "type": "number"
          },
          "B44": {
            "type": "number"
          },
          "B45": {
            "type": "number"
          },
          "B46": {
            "type": "number"
          },
          "C11": {
            "type": "number"
          },
          "C12": {
            "type": "number"
          },
          "C13": {
            "type": "number"
          },
          "C22": {
            "type": "number"
          },
          "C23": {
            "type": "number"
          },
          "C26": {
            "type": "number"
          },
          "C27": {
            "type": "number"
          },
          "C31": {
            "type": "number"
          },
          "C41": {
            "type": "number"
          },
          "C42": {
            "type": "number"
          },
          "C43": {
            "type": "number"
          },
          "C44": {
            "type": "number"
          },
          "C45": {
            "type": "number"
          },
          "C46": {
            "type": "number"
          },
          "C47": {
            "type": "number"
          },
          "C48": {
            "type": "number"
          },
          "C49": {
            "type": "number"
          },
          "C410": {
            "type": "number"
          },
          "C52": {
            "type": "number"
          },
          "D11": {
            "type": "number"
          },
          "D21": {
            "type": "number"
          },
          "D22": {
            "type": "number"
          },
          "D23": {
            "type": "number"
          },
          "D31": {
            "type": "number"
          },
          "D32": {
            "type": "number"
          },
          "D33": {
            "type": "number"
          },
          "D41": {
            "type": "number"
          },
          "D42": {
            "type": "number"
          },
          "D43": {
            "type": "number"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "last_name": {
            "type": "string"
          },
          "estamentoId": {
            "type": "number"
          },
          "ejecucionId": {
            "type": "number"
          },
          "sedeId": {
            "type": "number"
          }
        },
        "required": [
          "A11",
          "A12",
          "A13",
          "A21",
          "A22",
          "A23",
          "A24",
          "A25",
          "A31",
          "A32",
          "A33",
          "A34",
          "A35",
          "A36",
          "A41",
          "A42",
          "A43",
          "A44",
          "A51",
          "A52",
          "A53",
          "A54",
          "A55",
          "A56",
          "A57",
          "A58",
          "A61",
          "A62",
          "A63",
          "A64",
          "B11",
          "B12",
          "B13",
          "B23",
          "B24",
          "B31",
          "B32",
          "B33",
          "B34",
          "B41",
          "B42",
          "B43",
          "B44",
          "B45",
          "B46",
          "C11",
          "C12",
          "C13",
          "C22",
          "C23",
          "C26",
          "C27",
          "C31",
          "C41",
          "C42",
          "C43",
          "C44",
          "C45",
          "C46",
          "C47",
          "C48",
          "C49",
          "C410",
          "C52",
          "D11",
          "D21",
          "D22",
          "D23",
          "D31",
          "D32",
          "D33",
          "D41",
          "D42",
          "D43",
          "date_creation",
          "estamentoId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<Cuestionarioxa, 'idCuestionarioA'>, 'ejecucionId'>"
      },
      "CuestionarioxaPartial": {
        "title": "CuestionarioxaPartial",
        "type": "object",
        "description": "(tsType: Partial<Cuestionarioxa>, schemaOptions: { partial: true })",
        "properties": {
          "idCuestionarioA": {
            "type": "number"
          },
          "A11": {
            "type": "number"
          },
          "A12": {
            "type": "number"
          },
          "A13": {
            "type": "number"
          },
          "A21": {
            "type": "number"
          },
          "A22": {
            "type": "number"
          },
          "A23": {
            "type": "number"
          },
          "A24": {
            "type": "number"
          },
          "A25": {
            "type": "number"
          },
          "A31": {
            "type": "number"
          },
          "A32": {
            "type": "number"
          },
          "A33": {
            "type": "number"
          },
          "A34": {
            "type": "number"
          },
          "A35": {
            "type": "number"
          },
          "A36": {
            "type": "number"
          },
          "A41": {
            "type": "number"
          },
          "A42": {
            "type": "number"
          },
          "A43": {
            "type": "number"
          },
          "A44": {
            "type": "number"
          },
          "A51": {
            "type": "number"
          },
          "A52": {
            "type": "number"
          },
          "A53": {
            "type": "number"
          },
          "A54": {
            "type": "number"
          },
          "A55": {
            "type": "number"
          },
          "A56": {
            "type": "number"
          },
          "A57": {
            "type": "number"
          },
          "A58": {
            "type": "number"
          },
          "A61": {
            "type": "number"
          },
          "A62": {
            "type": "number"
          },
          "A63": {
            "type": "number"
          },
          "A64": {
            "type": "number"
          },
          "B11": {
            "type": "number"
          },
          "B12": {
            "type": "number"
          },
          "B13": {
            "type": "number"
          },
          "B23": {
            "type": "number"
          },
          "B24": {
            "type": "number"
          },
          "B31": {
            "type": "number"
          },
          "B32": {
            "type": "number"
          },
          "B33": {
            "type": "number"
          },
          "B34": {
            "type": "number"
          },
          "B41": {
            "type": "number"
          },
          "B42": {
            "type": "number"
          },
          "B43": {
            "type": "number"
          },
          "B44": {
            "type": "number"
          },
          "B45": {
            "type": "number"
          },
          "B46": {
            "type": "number"
          },
          "C11": {
            "type": "number"
          },
          "C12": {
            "type": "number"
          },
          "C13": {
            "type": "number"
          },
          "C22": {
            "type": "number"
          },
          "C23": {
            "type": "number"
          },
          "C26": {
            "type": "number"
          },
          "C27": {
            "type": "number"
          },
          "C31": {
            "type": "number"
          },
          "C41": {
            "type": "number"
          },
          "C42": {
            "type": "number"
          },
          "C43": {
            "type": "number"
          },
          "C44": {
            "type": "number"
          },
          "C45": {
            "type": "number"
          },
          "C46": {
            "type": "number"
          },
          "C47": {
            "type": "number"
          },
          "C48": {
            "type": "number"
          },
          "C49": {
            "type": "number"
          },
          "C410": {
            "type": "number"
          },
          "C52": {
            "type": "number"
          },
          "D11": {
            "type": "number"
          },
          "D21": {
            "type": "number"
          },
          "D22": {
            "type": "number"
          },
          "D23": {
            "type": "number"
          },
          "D31": {
            "type": "number"
          },
          "D32": {
            "type": "number"
          },
          "D33": {
            "type": "number"
          },
          "D41": {
            "type": "number"
          },
          "D42": {
            "type": "number"
          },
          "D43": {
            "type": "number"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "last_name": {
            "type": "string"
          },
          "estamentoId": {
            "type": "number"
          },
          "ejecucionId": {
            "type": "number"
          },
          "sedeId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Cuestionarioxa>"
      },
      "NewCuestionarioxbInEjecucion": {
        "title": "NewCuestionarioxbInEjecucion",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<Cuestionarioxb, 'idCuestionarioB'>, 'ejecucionId'>, schemaOptions: { title: 'NewCuestionarioxbInEjecucion', exclude: [ 'idCuestionarioB' ], optional: [ 'ejecucionId' ] })",
        "properties": {
          "A11": {
            "type": "number"
          },
          "A12": {
            "type": "number"
          },
          "A13": {
            "type": "number"
          },
          "A21": {
            "type": "number"
          },
          "A24": {
            "type": "number"
          },
          "A31": {
            "type": "number"
          },
          "A32": {
            "type": "number"
          },
          "A33": {
            "type": "number"
          },
          "A34": {
            "type": "number"
          },
          "A35": {
            "type": "number"
          },
          "A36": {
            "type": "number"
          },
          "A41": {
            "type": "number"
          },
          "A42": {
            "type": "number"
          },
          "A43": {
            "type": "number"
          },
          "A44": {
            "type": "number"
          },
          "A51": {
            "type": "number"
          },
          "A52": {
            "type": "number"
          },
          "A53": {
            "type": "number"
          },
          "A54": {
            "type": "number"
          },
          "A55": {
            "type": "number"
          },
          "A56": {
            "type": "number"
          },
          "A57": {
            "type": "number"
          },
          "A58": {
            "type": "number"
          },
          "A61": {
            "type": "number"
          },
          "A63": {
            "type": "number"
          },
          "B14": {
            "type": "number"
          },
          "B21": {
            "type": "number"
          },
          "B22": {
            "type": "number"
          },
          "B23": {
            "type": "number"
          },
          "B24": {
            "type": "number"
          },
          "B31": {
            "type": "number"
          },
          "B32": {
            "type": "number"
          },
          "B33": {
            "type": "number"
          },
          "B34": {
            "type": "number"
          },
          "B41": {
            "type": "number"
          },
          "B42": {
            "type": "number"
          },
          "B43": {
            "type": "number"
          },
          "B44": {
            "type": "number"
          },
          "B45": {
            "type": "number"
          },
          "D11": {
            "type": "number"
          },
          "D21": {
            "type": "number"
          },
          "D22": {
            "type": "number"
          },
          "D23": {
            "type": "number"
          },
          "D31": {
            "type": "number"
          },
          "D32": {
            "type": "number"
          },
          "D33": {
            "type": "number"
          },
          "D41": {
            "type": "number"
          },
          "D42": {
            "type": "number"
          },
          "D43": {
            "type": "number"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "last_name": {
            "type": "string"
          },
          "estamentoId": {
            "type": "number"
          },
          "ejecucionId": {
            "type": "number"
          },
          "sedeId": {
            "type": "number"
          }
        },
        "required": [
          "A11",
          "A12",
          "A13",
          "A21",
          "A24",
          "A31",
          "A32",
          "A33",
          "A34",
          "A35",
          "A36",
          "A41",
          "A42",
          "A43",
          "A44",
          "A51",
          "A52",
          "A53",
          "A54",
          "A55",
          "A56",
          "A57",
          "A58",
          "A61",
          "A63",
          "B14",
          "B21",
          "B22",
          "B23",
          "B24",
          "B31",
          "B32",
          "B33",
          "B34",
          "B41",
          "B42",
          "B43",
          "B44",
          "B45",
          "D11",
          "D21",
          "D22",
          "D23",
          "D31",
          "D32",
          "D33",
          "D41",
          "D42",
          "D43",
          "date_creation",
          "estamentoId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<Cuestionarioxb, 'idCuestionarioB'>, 'ejecucionId'>"
      },
      "CuestionarioxbPartial": {
        "title": "CuestionarioxbPartial",
        "type": "object",
        "description": "(tsType: Partial<Cuestionarioxb>, schemaOptions: { partial: true })",
        "properties": {
          "idCuestionarioB": {
            "type": "number"
          },
          "A11": {
            "type": "number"
          },
          "A12": {
            "type": "number"
          },
          "A13": {
            "type": "number"
          },
          "A21": {
            "type": "number"
          },
          "A24": {
            "type": "number"
          },
          "A31": {
            "type": "number"
          },
          "A32": {
            "type": "number"
          },
          "A33": {
            "type": "number"
          },
          "A34": {
            "type": "number"
          },
          "A35": {
            "type": "number"
          },
          "A36": {
            "type": "number"
          },
          "A41": {
            "type": "number"
          },
          "A42": {
            "type": "number"
          },
          "A43": {
            "type": "number"
          },
          "A44": {
            "type": "number"
          },
          "A51": {
            "type": "number"
          },
          "A52": {
            "type": "number"
          },
          "A53": {
            "type": "number"
          },
          "A54": {
            "type": "number"
          },
          "A55": {
            "type": "number"
          },
          "A56": {
            "type": "number"
          },
          "A57": {
            "type": "number"
          },
          "A58": {
            "type": "number"
          },
          "A61": {
            "type": "number"
          },
          "A63": {
            "type": "number"
          },
          "B14": {
            "type": "number"
          },
          "B21": {
            "type": "number"
          },
          "B22": {
            "type": "number"
          },
          "B23": {
            "type": "number"
          },
          "B24": {
            "type": "number"
          },
          "B31": {
            "type": "number"
          },
          "B32": {
            "type": "number"
          },
          "B33": {
            "type": "number"
          },
          "B34": {
            "type": "number"
          },
          "B41": {
            "type": "number"
          },
          "B42": {
            "type": "number"
          },
          "B43": {
            "type": "number"
          },
          "B44": {
            "type": "number"
          },
          "B45": {
            "type": "number"
          },
          "D11": {
            "type": "number"
          },
          "D21": {
            "type": "number"
          },
          "D22": {
            "type": "number"
          },
          "D23": {
            "type": "number"
          },
          "D31": {
            "type": "number"
          },
          "D32": {
            "type": "number"
          },
          "D33": {
            "type": "number"
          },
          "D41": {
            "type": "number"
          },
          "D42": {
            "type": "number"
          },
          "D43": {
            "type": "number"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "last_name": {
            "type": "string"
          },
          "estamentoId": {
            "type": "number"
          },
          "ejecucionId": {
            "type": "number"
          },
          "sedeId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Cuestionarioxb>"
      },
      "Ejecucion": {
        "title": "Ejecucion",
        "type": "object",
        "properties": {
          "idEjecution": {
            "type": "number"
          },
          "state": {
            "type": "string"
          },
          "name_aplication": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "date_start": {
            "type": "string",
            "format": "date-time"
          },
          "date_end": {
            "type": "string",
            "format": "date-time"
          },
          "description": {
            "type": "string"
          },
          "username": {
            "type": "string"
          },
          "yearId": {
            "type": "number"
          }
        },
        "required": [
          "state",
          "name_aplication",
          "date_creation",
          "date_start",
          "yearId"
        ],
        "additionalProperties": false
      },
      "NewEjecucion": {
        "title": "NewEjecucion",
        "type": "object",
        "description": "(tsType: Omit<Ejecucion, 'idEjecution' | 'date_creation' | 'date_modification'>, schemaOptions: { title: 'NewEjecucion', exclude: [ 'idEjecution', 'date_creation', 'date_modification' ] })",
        "properties": {
          "state": {
            "type": "string"
          },
          "name_aplication": {
            "type": "string"
          },
          "date_start": {
            "type": "string",
            "format": "date-time"
          },
          "date_end": {
            "type": "string",
            "format": "date-time"
          },
          "description": {
            "type": "string"
          },
          "username": {
            "type": "string"
          },
          "yearId": {
            "type": "number"
          }
        },
        "required": [
          "state",
          "name_aplication",
          "date_start",
          "yearId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<Ejecucion, 'idEjecution' | 'date_creation' | 'date_modification'>"
      },
      "EjecucionWithRelations": {
        "title": "EjecucionWithRelations",
        "type": "object",
        "description": "(tsType: EjecucionWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "idEjecution": {
            "type": "number"
          },
          "state": {
            "type": "string"
          },
          "name_aplication": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "date_start": {
            "type": "string",
            "format": "date-time"
          },
          "date_end": {
            "type": "string",
            "format": "date-time"
          },
          "description": {
            "type": "string"
          },
          "username": {
            "type": "string"
          },
          "yearId": {
            "type": "number"
          },
          "cuestionarioxas": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/CuestionarioxaWithRelations"
            }
          },
          "cuestionarioxbs": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/CuestionarioxbWithRelations"
            }
          }
        },
        "required": [
          "state",
          "name_aplication",
          "date_creation",
          "date_start",
          "yearId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "EjecucionWithRelations"
      },
      "NewCuestionarioxaInEstamento": {
        "title": "NewCuestionarioxaInEstamento",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<Cuestionarioxa, 'idCuestionarioA'>, 'estamentoId'>, schemaOptions: { title: 'NewCuestionarioxaInEstamento', exclude: [ 'idCuestionarioA' ], optional: [ 'estamentoId' ] })",
        "properties": {
          "A11": {
            "type": "number"
          },
          "A12": {
            "type": "number"
          },
          "A13": {
            "type": "number"
          },
          "A21": {
            "type": "number"
          },
          "A22": {
            "type": "number"
          },
          "A23": {
            "type": "number"
          },
          "A24": {
            "type": "number"
          },
          "A25": {
            "type": "number"
          },
          "A31": {
            "type": "number"
          },
          "A32": {
            "type": "number"
          },
          "A33": {
            "type": "number"
          },
          "A34": {
            "type": "number"
          },
          "A35": {
            "type": "number"
          },
          "A36": {
            "type": "number"
          },
          "A41": {
            "type": "number"
          },
          "A42": {
            "type": "number"
          },
          "A43": {
            "type": "number"
          },
          "A44": {
            "type": "number"
          },
          "A51": {
            "type": "number"
          },
          "A52": {
            "type": "number"
          },
          "A53": {
            "type": "number"
          },
          "A54": {
            "type": "number"
          },
          "A55": {
            "type": "number"
          },
          "A56": {
            "type": "number"
          },
          "A57": {
            "type": "number"
          },
          "A58": {
            "type": "number"
          },
          "A61": {
            "type": "number"
          },
          "A62": {
            "type": "number"
          },
          "A63": {
            "type": "number"
          },
          "A64": {
            "type": "number"
          },
          "B11": {
            "type": "number"
          },
          "B12": {
            "type": "number"
          },
          "B13": {
            "type": "number"
          },
          "B23": {
            "type": "number"
          },
          "B24": {
            "type": "number"
          },
          "B31": {
            "type": "number"
          },
          "B32": {
            "type": "number"
          },
          "B33": {
            "type": "number"
          },
          "B34": {
            "type": "number"
          },
          "B41": {
            "type": "number"
          },
          "B42": {
            "type": "number"
          },
          "B43": {
            "type": "number"
          },
          "B44": {
            "type": "number"
          },
          "B45": {
            "type": "number"
          },
          "B46": {
            "type": "number"
          },
          "C11": {
            "type": "number"
          },
          "C12": {
            "type": "number"
          },
          "C13": {
            "type": "number"
          },
          "C22": {
            "type": "number"
          },
          "C23": {
            "type": "number"
          },
          "C26": {
            "type": "number"
          },
          "C27": {
            "type": "number"
          },
          "C31": {
            "type": "number"
          },
          "C41": {
            "type": "number"
          },
          "C42": {
            "type": "number"
          },
          "C43": {
            "type": "number"
          },
          "C44": {
            "type": "number"
          },
          "C45": {
            "type": "number"
          },
          "C46": {
            "type": "number"
          },
          "C47": {
            "type": "number"
          },
          "C48": {
            "type": "number"
          },
          "C49": {
            "type": "number"
          },
          "C410": {
            "type": "number"
          },
          "C52": {
            "type": "number"
          },
          "D11": {
            "type": "number"
          },
          "D21": {
            "type": "number"
          },
          "D22": {
            "type": "number"
          },
          "D23": {
            "type": "number"
          },
          "D31": {
            "type": "number"
          },
          "D32": {
            "type": "number"
          },
          "D33": {
            "type": "number"
          },
          "D41": {
            "type": "number"
          },
          "D42": {
            "type": "number"
          },
          "D43": {
            "type": "number"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "last_name": {
            "type": "string"
          },
          "estamentoId": {
            "type": "number"
          },
          "ejecucionId": {
            "type": "number"
          },
          "sedeId": {
            "type": "number"
          }
        },
        "required": [
          "A11",
          "A12",
          "A13",
          "A21",
          "A22",
          "A23",
          "A24",
          "A25",
          "A31",
          "A32",
          "A33",
          "A34",
          "A35",
          "A36",
          "A41",
          "A42",
          "A43",
          "A44",
          "A51",
          "A52",
          "A53",
          "A54",
          "A55",
          "A56",
          "A57",
          "A58",
          "A61",
          "A62",
          "A63",
          "A64",
          "B11",
          "B12",
          "B13",
          "B23",
          "B24",
          "B31",
          "B32",
          "B33",
          "B34",
          "B41",
          "B42",
          "B43",
          "B44",
          "B45",
          "B46",
          "C11",
          "C12",
          "C13",
          "C22",
          "C23",
          "C26",
          "C27",
          "C31",
          "C41",
          "C42",
          "C43",
          "C44",
          "C45",
          "C46",
          "C47",
          "C48",
          "C49",
          "C410",
          "C52",
          "D11",
          "D21",
          "D22",
          "D23",
          "D31",
          "D32",
          "D33",
          "D41",
          "D42",
          "D43",
          "date_creation",
          "ejecucionId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<Cuestionarioxa, 'idCuestionarioA'>, 'estamentoId'>"
      },
      "NewCuestionarioxbInEstamento": {
        "title": "NewCuestionarioxbInEstamento",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<Cuestionarioxb, 'idCuestionarioB'>, 'estamentoId'>, schemaOptions: { title: 'NewCuestionarioxbInEstamento', exclude: [ 'idCuestionarioB' ], optional: [ 'estamentoId' ] })",
        "properties": {
          "A11": {
            "type": "number"
          },
          "A12": {
            "type": "number"
          },
          "A13": {
            "type": "number"
          },
          "A21": {
            "type": "number"
          },
          "A24": {
            "type": "number"
          },
          "A31": {
            "type": "number"
          },
          "A32": {
            "type": "number"
          },
          "A33": {
            "type": "number"
          },
          "A34": {
            "type": "number"
          },
          "A35": {
            "type": "number"
          },
          "A36": {
            "type": "number"
          },
          "A41": {
            "type": "number"
          },
          "A42": {
            "type": "number"
          },
          "A43": {
            "type": "number"
          },
          "A44": {
            "type": "number"
          },
          "A51": {
            "type": "number"
          },
          "A52": {
            "type": "number"
          },
          "A53": {
            "type": "number"
          },
          "A54": {
            "type": "number"
          },
          "A55": {
            "type": "number"
          },
          "A56": {
            "type": "number"
          },
          "A57": {
            "type": "number"
          },
          "A58": {
            "type": "number"
          },
          "A61": {
            "type": "number"
          },
          "A63": {
            "type": "number"
          },
          "B14": {
            "type": "number"
          },
          "B21": {
            "type": "number"
          },
          "B22": {
            "type": "number"
          },
          "B23": {
            "type": "number"
          },
          "B24": {
            "type": "number"
          },
          "B31": {
            "type": "number"
          },
          "B32": {
            "type": "number"
          },
          "B33": {
            "type": "number"
          },
          "B34": {
            "type": "number"
          },
          "B41": {
            "type": "number"
          },
          "B42": {
            "type": "number"
          },
          "B43": {
            "type": "number"
          },
          "B44": {
            "type": "number"
          },
          "B45": {
            "type": "number"
          },
          "D11": {
            "type": "number"
          },
          "D21": {
            "type": "number"
          },
          "D22": {
            "type": "number"
          },
          "D23": {
            "type": "number"
          },
          "D31": {
            "type": "number"
          },
          "D32": {
            "type": "number"
          },
          "D33": {
            "type": "number"
          },
          "D41": {
            "type": "number"
          },
          "D42": {
            "type": "number"
          },
          "D43": {
            "type": "number"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "last_name": {
            "type": "string"
          },
          "estamentoId": {
            "type": "number"
          },
          "ejecucionId": {
            "type": "number"
          },
          "sedeId": {
            "type": "number"
          }
        },
        "required": [
          "A11",
          "A12",
          "A13",
          "A21",
          "A24",
          "A31",
          "A32",
          "A33",
          "A34",
          "A35",
          "A36",
          "A41",
          "A42",
          "A43",
          "A44",
          "A51",
          "A52",
          "A53",
          "A54",
          "A55",
          "A56",
          "A57",
          "A58",
          "A61",
          "A63",
          "B14",
          "B21",
          "B22",
          "B23",
          "B24",
          "B31",
          "B32",
          "B33",
          "B34",
          "B41",
          "B42",
          "B43",
          "B44",
          "B45",
          "D11",
          "D21",
          "D22",
          "D23",
          "D31",
          "D32",
          "D33",
          "D41",
          "D42",
          "D43",
          "date_creation",
          "ejecucionId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<Cuestionarioxb, 'idCuestionarioB'>, 'estamentoId'>"
      },
      "Estamento": {
        "title": "Estamento",
        "type": "object",
        "properties": {
          "idState": {
            "type": "number"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "name_state": {
            "type": "string"
          }
        },
        "required": [
          "date_creation",
          "name_state"
        ],
        "additionalProperties": false
      },
      "NewEstamento": {
        "title": "NewEstamento",
        "type": "object",
        "description": "(tsType: Omit<Estamento, 'idState' | 'date_creation' | 'date_modification'>, schemaOptions: { title: 'NewEstamento', exclude: [ 'idState', 'date_creation', 'date_modification' ] })",
        "properties": {
          "name_state": {
            "type": "string"
          }
        },
        "required": [
          "name_state"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<Estamento, 'idState' | 'date_creation' | 'date_modification'>"
      },
      "EstamentoWithRelations": {
        "title": "EstamentoWithRelations",
        "type": "object",
        "description": "(tsType: EstamentoWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "idState": {
            "type": "number"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "name_state": {
            "type": "string"
          },
          "cuestionarioxas": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/CuestionarioxaWithRelations"
            }
          },
          "cuestionarioxbs": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/CuestionarioxbWithRelations"
            }
          }
        },
        "required": [
          "date_creation",
          "name_state"
        ],
        "additionalProperties": false,
        "x-typescript-type": "EstamentoWithRelations"
      },
      "Sede": {
        "title": "Sede",
        "type": "object",
        "properties": {
          "idSede": {
            "type": "number"
          },
          "name_sede": {
            "type": "string"
          },
          "consecutivo": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "municipioId": {
            "type": "number"
          },
          "institucionId": {
            "type": "number"
          }
        },
        "required": [
          "name_sede",
          "consecutivo",
          "date_creation"
        ],
        "additionalProperties": false
      },
      "NewSedeInInstitucion": {
        "title": "NewSedeInInstitucion",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<Sede, 'idSede'>, 'institucionId'>, schemaOptions: { title: 'NewSedeInInstitucion', exclude: [ 'idSede' ], optional: [ 'institucionId' ] })",
        "properties": {
          "name_sede": {
            "type": "string"
          },
          "consecutivo": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "municipioId": {
            "type": "number"
          },
          "institucionId": {
            "type": "number"
          }
        },
        "required": [
          "name_sede",
          "consecutivo",
          "date_creation"
        ],
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<Sede, 'idSede'>, 'institucionId'>"
      },
      "SedePartial": {
        "title": "SedePartial",
        "type": "object",
        "description": "(tsType: Partial<Sede>, schemaOptions: { partial: true })",
        "properties": {
          "idSede": {
            "type": "number"
          },
          "name_sede": {
            "type": "string"
          },
          "consecutivo": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "municipioId": {
            "type": "number"
          },
          "institucionId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Sede>"
      },
      "Institucion": {
        "title": "Institucion",
        "type": "object",
        "properties": {
          "idInstitution": {
            "type": "number"
          },
          "name_institution": {
            "type": "string"
          },
          "num_dane": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "name_institution",
          "num_dane",
          "date_creation"
        ],
        "additionalProperties": false
      },
      "InstitucionWithRelations": {
        "title": "InstitucionWithRelations",
        "type": "object",
        "description": "(tsType: InstitucionWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "idInstitution": {
            "type": "number"
          },
          "name_institution": {
            "type": "string"
          },
          "num_dane": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "sedes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/SedeWithRelations"
            }
          }
        },
        "required": [
          "name_institution",
          "num_dane",
          "date_creation"
        ],
        "additionalProperties": false,
        "x-typescript-type": "InstitucionWithRelations"
      },
      "NewSedeInMunicipio": {
        "title": "NewSedeInMunicipio",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<Sede, 'idSede'>, 'municipioId'>, schemaOptions: { title: 'NewSedeInMunicipio', exclude: [ 'idSede' ], optional: [ 'municipioId' ] })",
        "properties": {
          "name_sede": {
            "type": "string"
          },
          "consecutivo": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "municipioId": {
            "type": "number"
          },
          "institucionId": {
            "type": "number"
          }
        },
        "required": [
          "name_sede",
          "consecutivo",
          "date_creation"
        ],
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<Sede, 'idSede'>, 'municipioId'>"
      },
      "NewMunicipio": {
        "title": "NewMunicipio",
        "type": "object",
        "description": "(tsType: Omit<Municipio, 'idTown' | 'date_creation' | 'date_modification'>, schemaOptions: { title: 'NewMunicipio', exclude: [ 'idTown', 'date_creation', 'date_modification' ] })",
        "properties": {
          "town_name": {
            "type": "string"
          },
          "departamentoId": {
            "type": "number"
          }
        },
        "required": [
          "town_name"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<Municipio, 'idTown' | 'date_creation' | 'date_modification'>"
      },
      "Parametrizacion": {
        "title": "Parametrizacion",
        "type": "object",
        "properties": {
          "idParam": {
            "type": "number"
          },
          "key": {
            "type": "string"
          },
          "value": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "key",
          "value",
          "date_creation"
        ],
        "additionalProperties": false
      },
      "NewParametrizacion": {
        "title": "NewParametrizacion",
        "type": "object",
        "description": "(tsType: Omit<Parametrizacion, 'idParam' | 'date_creation' | 'date_modification'>, schemaOptions: { title: 'NewParametrizacion', exclude: [ 'idParam', 'date_creation', 'date_modification' ] })",
        "properties": {
          "key": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        },
        "required": [
          "key",
          "value"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<Parametrizacion, 'idParam' | 'date_creation' | 'date_modification'>"
      },
      "ParametrizacionWithRelations": {
        "title": "ParametrizacionWithRelations",
        "type": "object",
        "description": "(tsType: ParametrizacionWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "idParam": {
            "type": "number"
          },
          "key": {
            "type": "string"
          },
          "value": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "key",
          "value",
          "date_creation"
        ],
        "additionalProperties": false,
        "x-typescript-type": "ParametrizacionWithRelations"
      },
      "Variable": {
        "title": "Variable",
        "type": "object",
        "properties": {
          "idVariable": {
            "type": "number"
          },
          "name_variable": {
            "type": "string"
          },
          "code": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "procesoId": {
            "type": "number"
          }
        },
        "required": [
          "name_variable",
          "code",
          "date_creation",
          "procesoId"
        ],
        "additionalProperties": false
      },
      "NewVariableInProceso": {
        "title": "NewVariableInProceso",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<Variable, 'idVariable'>, 'procesoId'>, schemaOptions: { title: 'NewVariableInProceso', exclude: [ 'idVariable' ], optional: [ 'procesoId' ] })",
        "properties": {
          "name_variable": {
            "type": "string"
          },
          "code": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "procesoId": {
            "type": "number"
          }
        },
        "required": [
          "name_variable",
          "code",
          "date_creation"
        ],
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<Variable, 'idVariable'>, 'procesoId'>"
      },
      "VariablePartial": {
        "title": "VariablePartial",
        "type": "object",
        "description": "(tsType: Partial<Variable>, schemaOptions: { partial: true })",
        "properties": {
          "idVariable": {
            "type": "number"
          },
          "name_variable": {
            "type": "string"
          },
          "code": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "procesoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Variable>"
      },
      "NewProceso": {
        "title": "NewProceso",
        "type": "object",
        "description": "(tsType: Omit<Proceso, 'idProcess'>, schemaOptions: { title: 'NewProceso', exclude: [ 'idProcess' ] })",
        "properties": {
          "name_process": {
            "type": "string"
          },
          "code": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "areaId": {
            "type": "number"
          }
        },
        "required": [
          "name_process",
          "code",
          "date_creation",
          "areaId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<Proceso, 'idProcess'>"
      },
      "NewCuestionarioxaInSede": {
        "title": "NewCuestionarioxaInSede",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<Cuestionarioxa, 'idCuestionarioA'>, 'sedeId'>, schemaOptions: { title: 'NewCuestionarioxaInSede', exclude: [ 'idCuestionarioA' ], optional: [ 'sedeId' ] })",
        "properties": {
          "A11": {
            "type": "number"
          },
          "A12": {
            "type": "number"
          },
          "A13": {
            "type": "number"
          },
          "A21": {
            "type": "number"
          },
          "A22": {
            "type": "number"
          },
          "A23": {
            "type": "number"
          },
          "A24": {
            "type": "number"
          },
          "A25": {
            "type": "number"
          },
          "A31": {
            "type": "number"
          },
          "A32": {
            "type": "number"
          },
          "A33": {
            "type": "number"
          },
          "A34": {
            "type": "number"
          },
          "A35": {
            "type": "number"
          },
          "A36": {
            "type": "number"
          },
          "A41": {
            "type": "number"
          },
          "A42": {
            "type": "number"
          },
          "A43": {
            "type": "number"
          },
          "A44": {
            "type": "number"
          },
          "A51": {
            "type": "number"
          },
          "A52": {
            "type": "number"
          },
          "A53": {
            "type": "number"
          },
          "A54": {
            "type": "number"
          },
          "A55": {
            "type": "number"
          },
          "A56": {
            "type": "number"
          },
          "A57": {
            "type": "number"
          },
          "A58": {
            "type": "number"
          },
          "A61": {
            "type": "number"
          },
          "A62": {
            "type": "number"
          },
          "A63": {
            "type": "number"
          },
          "A64": {
            "type": "number"
          },
          "B11": {
            "type": "number"
          },
          "B12": {
            "type": "number"
          },
          "B13": {
            "type": "number"
          },
          "B23": {
            "type": "number"
          },
          "B24": {
            "type": "number"
          },
          "B31": {
            "type": "number"
          },
          "B32": {
            "type": "number"
          },
          "B33": {
            "type": "number"
          },
          "B34": {
            "type": "number"
          },
          "B41": {
            "type": "number"
          },
          "B42": {
            "type": "number"
          },
          "B43": {
            "type": "number"
          },
          "B44": {
            "type": "number"
          },
          "B45": {
            "type": "number"
          },
          "B46": {
            "type": "number"
          },
          "C11": {
            "type": "number"
          },
          "C12": {
            "type": "number"
          },
          "C13": {
            "type": "number"
          },
          "C22": {
            "type": "number"
          },
          "C23": {
            "type": "number"
          },
          "C26": {
            "type": "number"
          },
          "C27": {
            "type": "number"
          },
          "C31": {
            "type": "number"
          },
          "C41": {
            "type": "number"
          },
          "C42": {
            "type": "number"
          },
          "C43": {
            "type": "number"
          },
          "C44": {
            "type": "number"
          },
          "C45": {
            "type": "number"
          },
          "C46": {
            "type": "number"
          },
          "C47": {
            "type": "number"
          },
          "C48": {
            "type": "number"
          },
          "C49": {
            "type": "number"
          },
          "C410": {
            "type": "number"
          },
          "C52": {
            "type": "number"
          },
          "D11": {
            "type": "number"
          },
          "D21": {
            "type": "number"
          },
          "D22": {
            "type": "number"
          },
          "D23": {
            "type": "number"
          },
          "D31": {
            "type": "number"
          },
          "D32": {
            "type": "number"
          },
          "D33": {
            "type": "number"
          },
          "D41": {
            "type": "number"
          },
          "D42": {
            "type": "number"
          },
          "D43": {
            "type": "number"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "last_name": {
            "type": "string"
          },
          "estamentoId": {
            "type": "number"
          },
          "ejecucionId": {
            "type": "number"
          },
          "sedeId": {
            "type": "number"
          }
        },
        "required": [
          "A11",
          "A12",
          "A13",
          "A21",
          "A22",
          "A23",
          "A24",
          "A25",
          "A31",
          "A32",
          "A33",
          "A34",
          "A35",
          "A36",
          "A41",
          "A42",
          "A43",
          "A44",
          "A51",
          "A52",
          "A53",
          "A54",
          "A55",
          "A56",
          "A57",
          "A58",
          "A61",
          "A62",
          "A63",
          "A64",
          "B11",
          "B12",
          "B13",
          "B23",
          "B24",
          "B31",
          "B32",
          "B33",
          "B34",
          "B41",
          "B42",
          "B43",
          "B44",
          "B45",
          "B46",
          "C11",
          "C12",
          "C13",
          "C22",
          "C23",
          "C26",
          "C27",
          "C31",
          "C41",
          "C42",
          "C43",
          "C44",
          "C45",
          "C46",
          "C47",
          "C48",
          "C49",
          "C410",
          "C52",
          "D11",
          "D21",
          "D22",
          "D23",
          "D31",
          "D32",
          "D33",
          "D41",
          "D42",
          "D43",
          "date_creation",
          "estamentoId",
          "ejecucionId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<Cuestionarioxa, 'idCuestionarioA'>, 'sedeId'>"
      },
      "NewCuestionarioxbInSede": {
        "title": "NewCuestionarioxbInSede",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<Cuestionarioxb, 'idCuestionarioB'>, 'sedeId'>, schemaOptions: { title: 'NewCuestionarioxbInSede', exclude: [ 'idCuestionarioB' ], optional: [ 'sedeId' ] })",
        "properties": {
          "A11": {
            "type": "number"
          },
          "A12": {
            "type": "number"
          },
          "A13": {
            "type": "number"
          },
          "A21": {
            "type": "number"
          },
          "A24": {
            "type": "number"
          },
          "A31": {
            "type": "number"
          },
          "A32": {
            "type": "number"
          },
          "A33": {
            "type": "number"
          },
          "A34": {
            "type": "number"
          },
          "A35": {
            "type": "number"
          },
          "A36": {
            "type": "number"
          },
          "A41": {
            "type": "number"
          },
          "A42": {
            "type": "number"
          },
          "A43": {
            "type": "number"
          },
          "A44": {
            "type": "number"
          },
          "A51": {
            "type": "number"
          },
          "A52": {
            "type": "number"
          },
          "A53": {
            "type": "number"
          },
          "A54": {
            "type": "number"
          },
          "A55": {
            "type": "number"
          },
          "A56": {
            "type": "number"
          },
          "A57": {
            "type": "number"
          },
          "A58": {
            "type": "number"
          },
          "A61": {
            "type": "number"
          },
          "A63": {
            "type": "number"
          },
          "B14": {
            "type": "number"
          },
          "B21": {
            "type": "number"
          },
          "B22": {
            "type": "number"
          },
          "B23": {
            "type": "number"
          },
          "B24": {
            "type": "number"
          },
          "B31": {
            "type": "number"
          },
          "B32": {
            "type": "number"
          },
          "B33": {
            "type": "number"
          },
          "B34": {
            "type": "number"
          },
          "B41": {
            "type": "number"
          },
          "B42": {
            "type": "number"
          },
          "B43": {
            "type": "number"
          },
          "B44": {
            "type": "number"
          },
          "B45": {
            "type": "number"
          },
          "D11": {
            "type": "number"
          },
          "D21": {
            "type": "number"
          },
          "D22": {
            "type": "number"
          },
          "D23": {
            "type": "number"
          },
          "D31": {
            "type": "number"
          },
          "D32": {
            "type": "number"
          },
          "D33": {
            "type": "number"
          },
          "D41": {
            "type": "number"
          },
          "D42": {
            "type": "number"
          },
          "D43": {
            "type": "number"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "last_name": {
            "type": "string"
          },
          "estamentoId": {
            "type": "number"
          },
          "ejecucionId": {
            "type": "number"
          },
          "sedeId": {
            "type": "number"
          }
        },
        "required": [
          "A11",
          "A12",
          "A13",
          "A21",
          "A24",
          "A31",
          "A32",
          "A33",
          "A34",
          "A35",
          "A36",
          "A41",
          "A42",
          "A43",
          "A44",
          "A51",
          "A52",
          "A53",
          "A54",
          "A55",
          "A56",
          "A57",
          "A58",
          "A61",
          "A63",
          "B14",
          "B21",
          "B22",
          "B23",
          "B24",
          "B31",
          "B32",
          "B33",
          "B34",
          "B41",
          "B42",
          "B43",
          "B44",
          "B45",
          "D11",
          "D21",
          "D22",
          "D23",
          "D31",
          "D32",
          "D33",
          "D41",
          "D42",
          "D43",
          "date_creation",
          "estamentoId",
          "ejecucionId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<Cuestionarioxb, 'idCuestionarioB'>, 'sedeId'>"
      },
      "NewSede": {
        "title": "NewSede",
        "type": "object",
        "description": "(tsType: Omit<Sede, 'idSede' | 'date_creation' | 'date_modification'>, schemaOptions: { title: 'NewSede', exclude: [ 'idSede', 'date_creation', 'date_modification' ] })",
        "properties": {
          "name_sede": {
            "type": "string"
          },
          "consecutivo": {
            "type": "string"
          },
          "municipioId": {
            "type": "number"
          },
          "institucionId": {
            "type": "number"
          }
        },
        "required": [
          "name_sede",
          "consecutivo"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<Sede, 'idSede' | 'date_creation' | 'date_modification'>"
      },
      "NewUser": {
        "title": "NewUser",
        "type": "object",
        "description": "(tsType: Omit<User, 'id' | 'roles'>, schemaOptions: { title: 'NewUser', exclude: [ 'id', 'roles' ] })",
        "properties": {
          "username": {
            "type": "string"
          },
          "first_name": {
            "type": "string"
          },
          "last_name": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "password": {
            "type": "string"
          },
          "resetKey": {
            "type": "string"
          }
        },
        "required": [
          "username",
          "first_name",
          "last_name",
          "email",
          "password"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<User, 'id' | 'roles'>"
      },
      "User": {
        "title": "User",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "username": {
            "type": "string"
          },
          "first_name": {
            "type": "string"
          },
          "last_name": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "password": {
            "type": "string"
          },
          "roles": {
            "type": "string"
          },
          "resetKey": {
            "type": "string"
          }
        },
        "required": [
          "username",
          "first_name",
          "last_name",
          "email",
          "password"
        ],
        "additionalProperties": false
      },
      "ResetPasswordInit": {
        "title": "ResetPasswordInit",
        "type": "object",
        "properties": {
          "email": {
            "type": "string"
          }
        },
        "required": [
          "email"
        ],
        "additionalProperties": false
      },
      "KeyAndPassword": {
        "title": "KeyAndPassword",
        "type": "object",
        "properties": {
          "resetKey": {
            "type": "string"
          },
          "password": {
            "type": "string"
          },
          "confirmPassword": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "NewSedeInUser": {
        "title": "NewSedeInUser",
        "type": "object",
        "description": "(tsType: Omit<Sede, 'idSede'>, schemaOptions: { title: 'NewSedeInUser', exclude: [ 'idSede' ] })",
        "properties": {
          "name_sede": {
            "type": "string"
          },
          "consecutivo": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "municipioId": {
            "type": "number"
          },
          "institucionId": {
            "type": "number"
          }
        },
        "required": [
          "name_sede",
          "consecutivo",
          "date_creation"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<Sede, 'idSede'>"
      },
      "UserWithRelations": {
        "title": "UserWithRelations",
        "type": "object",
        "description": "(tsType: UserWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "username": {
            "type": "string"
          },
          "first_name": {
            "type": "string"
          },
          "last_name": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "password": {
            "type": "string"
          },
          "roles": {
            "type": "string"
          },
          "resetKey": {
            "type": "string"
          },
          "sedes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/SedeWithRelations"
            }
          }
        },
        "required": [
          "username",
          "first_name",
          "last_name",
          "email",
          "password"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserWithRelations"
      },
      "NewVariable": {
        "title": "NewVariable",
        "type": "object",
        "description": "(tsType: Omit<Variable, 'idVariable'>, schemaOptions: { title: 'NewVariable', exclude: [ 'idVariable' ] })",
        "properties": {
          "name_variable": {
            "type": "string"
          },
          "code": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "procesoId": {
            "type": "number"
          }
        },
        "required": [
          "name_variable",
          "code",
          "date_creation",
          "procesoId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<Variable, 'idVariable'>"
      },
      "NewEjecucionInYear": {
        "title": "NewEjecucionInYear",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<Ejecucion, 'idEjecution'>, 'yearId'>, schemaOptions: { title: 'NewEjecucionInYear', exclude: [ 'idEjecution' ], optional: [ 'yearId' ] })",
        "properties": {
          "state": {
            "type": "string"
          },
          "name_aplication": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "date_start": {
            "type": "string",
            "format": "date-time"
          },
          "date_end": {
            "type": "string",
            "format": "date-time"
          },
          "description": {
            "type": "string"
          },
          "username": {
            "type": "string"
          },
          "yearId": {
            "type": "number"
          }
        },
        "required": [
          "state",
          "name_aplication",
          "date_creation",
          "date_start"
        ],
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<Ejecucion, 'idEjecution'>, 'yearId'>"
      },
      "EjecucionPartial": {
        "title": "EjecucionPartial",
        "type": "object",
        "description": "(tsType: Partial<Ejecucion>, schemaOptions: { partial: true })",
        "properties": {
          "idEjecution": {
            "type": "number"
          },
          "state": {
            "type": "string"
          },
          "name_aplication": {
            "type": "string"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "date_start": {
            "type": "string",
            "format": "date-time"
          },
          "date_end": {
            "type": "string",
            "format": "date-time"
          },
          "description": {
            "type": "string"
          },
          "username": {
            "type": "string"
          },
          "yearId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Ejecucion>"
      },
      "Year": {
        "title": "Year",
        "type": "object",
        "properties": {
          "idYear": {
            "type": "number"
          },
          "title": {
            "type": "number"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "description": {
            "type": "string"
          }
        },
        "required": [
          "title",
          "date_creation"
        ],
        "additionalProperties": false
      },
      "NewYear": {
        "title": "NewYear",
        "type": "object",
        "description": "(tsType: Omit<Year, 'idYear' | 'date_creation' | 'date_modification'>, schemaOptions: { title: 'NewYear', exclude: [ 'idYear', 'date_creation', 'date_modification' ] })",
        "properties": {
          "title": {
            "type": "number"
          },
          "description": {
            "type": "string"
          }
        },
        "required": [
          "title"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<Year, 'idYear' | 'date_creation' | 'date_modification'>"
      },
      "YearWithRelations": {
        "title": "YearWithRelations",
        "type": "object",
        "description": "(tsType: YearWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "idYear": {
            "type": "number"
          },
          "title": {
            "type": "number"
          },
          "date_creation": {
            "type": "string",
            "format": "date-time"
          },
          "date_modification": {
            "type": "string",
            "format": "date-time"
          },
          "description": {
            "type": "string"
          },
          "ejecucions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/EjecucionWithRelations"
            }
          }
        },
        "required": [
          "title",
          "date_creation"
        ],
        "additionalProperties": false,
        "x-typescript-type": "YearWithRelations"
      },
      "Area.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "Area.ScopeFilter"
      },
      "Area.IncludeFilter.Items": {
        "title": "Area.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string"
          },
          "scope": {
            "$ref": "#/components/schemas/Area.ScopeFilter"
          }
        }
      },
      "Area.Filter": {
        "type": "object",
        "title": "Area.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "idArea": {
                    "type": "boolean"
                  },
                  "name_area": {
                    "type": "boolean"
                  },
                  "code": {
                    "type": "boolean"
                  },
                  "date_creation": {
                    "type": "boolean"
                  },
                  "date_modification": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "idArea",
                    "name_area",
                    "code",
                    "date_creation",
                    "date_modification"
                  ],
                  "example": "idArea"
                },
                "uniqueItems": true
              }
            ],
            "title": "Area.Fields"
          },
          "include": {
            "title": "Area.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Area.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Area>"
      },
      "Area.Filter1": {
        "type": "object",
        "title": "Area.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Area.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "idArea": {
                    "type": "boolean"
                  },
                  "name_area": {
                    "type": "boolean"
                  },
                  "code": {
                    "type": "boolean"
                  },
                  "date_creation": {
                    "type": "boolean"
                  },
                  "date_modification": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "idArea",
                    "name_area",
                    "code",
                    "date_creation",
                    "date_modification"
                  ],
                  "example": "idArea"
                },
                "uniqueItems": true
              }
            ],
            "title": "Area.Fields"
          },
          "include": {
            "title": "Area.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Area.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Area>"
      },
      "loopback.Count": {
        "type": "object",
        "title": "loopback.Count",
        "x-typescript-type": "@loopback/repository#Count",
        "properties": {
          "count": {
            "type": "number"
          }
        }
      },
      "Cuestionarioxa.Filter": {
        "type": "object",
        "title": "Cuestionarioxa.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "idCuestionarioA": {
                    "type": "boolean"
                  },
                  "A11": {
                    "type": "boolean"
                  },
                  "A12": {
                    "type": "boolean"
                  },
                  "A13": {
                    "type": "boolean"
                  },
                  "A21": {
                    "type": "boolean"
                  },
                  "A22": {
                    "type": "boolean"
                  },
                  "A23": {
                    "type": "boolean"
                  },
                  "A24": {
                    "type": "boolean"
                  },
                  "A25": {
                    "type": "boolean"
                  },
                  "A31": {
                    "type": "boolean"
                  },
                  "A32": {
                    "type": "boolean"
                  },
                  "A33": {
                    "type": "boolean"
                  },
                  "A34": {
                    "type": "boolean"
                  },
                  "A35": {
                    "type": "boolean"
                  },
                  "A36": {
                    "type": "boolean"
                  },
                  "A41": {
                    "type": "boolean"
                  },
                  "A42": {
                    "type": "boolean"
                  },
                  "A43": {
                    "type": "boolean"
                  },
                  "A44": {
                    "type": "boolean"
                  },
                  "A51": {
                    "type": "boolean"
                  },
                  "A52": {
                    "type": "boolean"
                  },
                  "A53": {
                    "type": "boolean"
                  },
                  "A54": {
                    "type": "boolean"
                  },
                  "A55": {
                    "type": "boolean"
                  },
                  "A56": {
                    "type": "boolean"
                  },
                  "A57": {
                    "type": "boolean"
                  },
                  "A58": {
                    "type": "boolean"
                  },
                  "A61": {
                    "type": "boolean"
                  },
                  "A62": {
                    "type": "boolean"
                  },
                  "A63": {
                    "type": "boolean"
                  },
                  "A64": {
                    "type": "boolean"
                  },
                  "B11": {
                    "type": "boolean"
                  },
                  "B12": {
                    "type": "boolean"
                  },
                  "B13": {
                    "type": "boolean"
                  },
                  "B23": {
                    "type": "boolean"
                  },
                  "B24": {
                    "type": "boolean"
                  },
                  "B31": {
                    "type": "boolean"
                  },
                  "B32": {
                    "type": "boolean"
                  },
                  "B33": {
                    "type": "boolean"
                  },
                  "B34": {
                    "type": "boolean"
                  },
                  "B41": {
                    "type": "boolean"
                  },
                  "B42": {
                    "type": "boolean"
                  },
                  "B43": {
                    "type": "boolean"
                  },
                  "B44": {
                    "type": "boolean"
                  },
                  "B45": {
                    "type": "boolean"
                  },
                  "B46": {
                    "type": "boolean"
                  },
                  "C11": {
                    "type": "boolean"
                  },
                  "C12": {
                    "type": "boolean"
                  },
                  "C13": {
                    "type": "boolean"
                  },
                  "C22": {
                    "type": "boolean"
                  },
                  "C23": {
                    "type": "boolean"
                  },
                  "C26": {
                    "type": "boolean"
                  },
                  "C27": {
                    "type": "boolean"
                  },
                  "C31": {
                    "type": "boolean"
                  },
                  "C41": {
                    "type": "boolean"
                  },
                  "C42": {
                    "type": "boolean"
                  },
                  "C43": {
                    "type": "boolean"
                  },
                  "C44": {
                    "type": "boolean"
                  },
                  "C45": {
                    "type": "boolean"
                  },
                  "C46": {
                    "type": "boolean"
                  },
                  "C47": {
                    "type": "boolean"
                  },
                  "C48": {
                    "type": "boolean"
                  },
                  "C49": {
                    "type": "boolean"
                  },
                  "C410": {
                    "type": "boolean"
                  },
                  "C52": {
                    "type": "boolean"
                  },
                  "D11": {
                    "type": "boolean"
                  },
                  "D21": {
                    "type": "boolean"
                  },
                  "D22": {
                    "type": "boolean"
                  },
                  "D23": {
                    "type": "boolean"
                  },
                  "D31": {
                    "type": "boolean"
                  },
                  "D32": {
                    "type": "boolean"
                  },
                  "D33": {
                    "type": "boolean"
                  },
                  "D41": {
                    "type": "boolean"
                  },
                  "D42": {
                    "type": "boolean"
                  },
                  "D43": {
                    "type": "boolean"
                  },
                  "date_creation": {
                    "type": "boolean"
                  },
                  "date_modification": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "last_name": {
                    "type": "boolean"
                  },
                  "estamentoId": {
                    "type": "boolean"
                  },
                  "ejecucionId": {
                    "type": "boolean"
                  },
                  "sedeId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "idCuestionarioA",
                    "A11",
                    "A12",
                    "A13",
                    "A21",
                    "A22",
                    "A23",
                    "A24",
                    "A25",
                    "A31",
                    "A32",
                    "A33",
                    "A34",
                    "A35",
                    "A36",
                    "A41",
                    "A42",
                    "A43",
                    "A44",
                    "A51",
                    "A52",
                    "A53",
                    "A54",
                    "A55",
                    "A56",
                    "A57",
                    "A58",
                    "A61",
                    "A62",
                    "A63",
                    "A64",
                    "B11",
                    "B12",
                    "B13",
                    "B23",
                    "B24",
                    "B31",
                    "B32",
                    "B33",
                    "B34",
                    "B41",
                    "B42",
                    "B43",
                    "B44",
                    "B45",
                    "B46",
                    "C11",
                    "C12",
                    "C13",
                    "C22",
                    "C23",
                    "C26",
                    "C27",
                    "C31",
                    "C41",
                    "C42",
                    "C43",
                    "C44",
                    "C45",
                    "C46",
                    "C47",
                    "C48",
                    "C49",
                    "C410",
                    "C52",
                    "D11",
                    "D21",
                    "D22",
                    "D23",
                    "D31",
                    "D32",
                    "D33",
                    "D41",
                    "D42",
                    "D43",
                    "date_creation",
                    "date_modification",
                    "name",
                    "last_name",
                    "estamentoId",
                    "ejecucionId",
                    "sedeId"
                  ],
                  "example": "idCuestionarioA"
                },
                "uniqueItems": true
              }
            ],
            "title": "Cuestionarioxa.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Cuestionarioxa>"
      },
      "Cuestionarioxa.Filter1": {
        "type": "object",
        "title": "Cuestionarioxa.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Cuestionarioxa.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "idCuestionarioA": {
                    "type": "boolean"
                  },
                  "A11": {
                    "type": "boolean"
                  },
                  "A12": {
                    "type": "boolean"
                  },
                  "A13": {
                    "type": "boolean"
                  },
                  "A21": {
                    "type": "boolean"
                  },
                  "A22": {
                    "type": "boolean"
                  },
                  "A23": {
                    "type": "boolean"
                  },
                  "A24": {
                    "type": "boolean"
                  },
                  "A25": {
                    "type": "boolean"
                  },
                  "A31": {
                    "type": "boolean"
                  },
                  "A32": {
                    "type": "boolean"
                  },
                  "A33": {
                    "type": "boolean"
                  },
                  "A34": {
                    "type": "boolean"
                  },
                  "A35": {
                    "type": "boolean"
                  },
                  "A36": {
                    "type": "boolean"
                  },
                  "A41": {
                    "type": "boolean"
                  },
                  "A42": {
                    "type": "boolean"
                  },
                  "A43": {
                    "type": "boolean"
                  },
                  "A44": {
                    "type": "boolean"
                  },
                  "A51": {
                    "type": "boolean"
                  },
                  "A52": {
                    "type": "boolean"
                  },
                  "A53": {
                    "type": "boolean"
                  },
                  "A54": {
                    "type": "boolean"
                  },
                  "A55": {
                    "type": "boolean"
                  },
                  "A56": {
                    "type": "boolean"
                  },
                  "A57": {
                    "type": "boolean"
                  },
                  "A58": {
                    "type": "boolean"
                  },
                  "A61": {
                    "type": "boolean"
                  },
                  "A62": {
                    "type": "boolean"
                  },
                  "A63": {
                    "type": "boolean"
                  },
                  "A64": {
                    "type": "boolean"
                  },
                  "B11": {
                    "type": "boolean"
                  },
                  "B12": {
                    "type": "boolean"
                  },
                  "B13": {
                    "type": "boolean"
                  },
                  "B23": {
                    "type": "boolean"
                  },
                  "B24": {
                    "type": "boolean"
                  },
                  "B31": {
                    "type": "boolean"
                  },
                  "B32": {
                    "type": "boolean"
                  },
                  "B33": {
                    "type": "boolean"
                  },
                  "B34": {
                    "type": "boolean"
                  },
                  "B41": {
                    "type": "boolean"
                  },
                  "B42": {
                    "type": "boolean"
                  },
                  "B43": {
                    "type": "boolean"
                  },
                  "B44": {
                    "type": "boolean"
                  },
                  "B45": {
                    "type": "boolean"
                  },
                  "B46": {
                    "type": "boolean"
                  },
                  "C11": {
                    "type": "boolean"
                  },
                  "C12": {
                    "type": "boolean"
                  },
                  "C13": {
                    "type": "boolean"
                  },
                  "C22": {
                    "type": "boolean"
                  },
                  "C23": {
                    "type": "boolean"
                  },
                  "C26": {
                    "type": "boolean"
                  },
                  "C27": {
                    "type": "boolean"
                  },
                  "C31": {
                    "type": "boolean"
                  },
                  "C41": {
                    "type": "boolean"
                  },
                  "C42": {
                    "type": "boolean"
                  },
                  "C43": {
                    "type": "boolean"
                  },
                  "C44": {
                    "type": "boolean"
                  },
                  "C45": {
                    "type": "boolean"
                  },
                  "C46": {
                    "type": "boolean"
                  },
                  "C47": {
                    "type": "boolean"
                  },
                  "C48": {
                    "type": "boolean"
                  },
                  "C49": {
                    "type": "boolean"
                  },
                  "C410": {
                    "type": "boolean"
                  },
                  "C52": {
                    "type": "boolean"
                  },
                  "D11": {
                    "type": "boolean"
                  },
                  "D21": {
                    "type": "boolean"
                  },
                  "D22": {
                    "type": "boolean"
                  },
                  "D23": {
                    "type": "boolean"
                  },
                  "D31": {
                    "type": "boolean"
                  },
                  "D32": {
                    "type": "boolean"
                  },
                  "D33": {
                    "type": "boolean"
                  },
                  "D41": {
                    "type": "boolean"
                  },
                  "D42": {
                    "type": "boolean"
                  },
                  "D43": {
                    "type": "boolean"
                  },
                  "date_creation": {
                    "type": "boolean"
                  },
                  "date_modification": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "last_name": {
                    "type": "boolean"
                  },
                  "estamentoId": {
                    "type": "boolean"
                  },
                  "ejecucionId": {
                    "type": "boolean"
                  },
                  "sedeId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "idCuestionarioA",
                    "A11",
                    "A12",
                    "A13",
                    "A21",
                    "A22",
                    "A23",
                    "A24",
                    "A25",
                    "A31",
                    "A32",
                    "A33",
                    "A34",
                    "A35",
                    "A36",
                    "A41",
                    "A42",
                    "A43",
                    "A44",
                    "A51",
                    "A52",
                    "A53",
                    "A54",
                    "A55",
                    "A56",
                    "A57",
                    "A58",
                    "A61",
                    "A62",
                    "A63",
                    "A64",
                    "B11",
                    "B12",
                    "B13",
                    "B23",
                    "B24",
                    "B31",
                    "B32",
                    "B33",
                    "B34",
                    "B41",
                    "B42",
                    "B43",
                    "B44",
                    "B45",
                    "B46",
                    "C11",
                    "C12",
                    "C13",
                    "C22",
                    "C23",
                    "C26",
                    "C27",
                    "C31",
                    "C41",
                    "C42",
                    "C43",
                    "C44",
                    "C45",
                    "C46",
                    "C47",
                    "C48",
                    "C49",
                    "C410",
                    "C52",
                    "D11",
                    "D21",
                    "D22",
                    "D23",
                    "D31",
                    "D32",
                    "D33",
                    "D41",
                    "D42",
                    "D43",
                    "date_creation",
                    "date_modification",
                    "name",
                    "last_name",
                    "estamentoId",
                    "ejecucionId",
                    "sedeId"
                  ],
                  "example": "idCuestionarioA"
                },
                "uniqueItems": true
              }
            ],
            "title": "Cuestionarioxa.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Cuestionarioxa>"
      },
      "Cuestionarioxb.Filter": {
        "type": "object",
        "title": "Cuestionarioxb.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "idCuestionarioB": {
                    "type": "boolean"
                  },
                  "A11": {
                    "type": "boolean"
                  },
                  "A12": {
                    "type": "boolean"
                  },
                  "A13": {
                    "type": "boolean"
                  },
                  "A21": {
                    "type": "boolean"
                  },
                  "A24": {
                    "type": "boolean"
                  },
                  "A31": {
                    "type": "boolean"
                  },
                  "A32": {
                    "type": "boolean"
                  },
                  "A33": {
                    "type": "boolean"
                  },
                  "A34": {
                    "type": "boolean"
                  },
                  "A35": {
                    "type": "boolean"
                  },
                  "A36": {
                    "type": "boolean"
                  },
                  "A41": {
                    "type": "boolean"
                  },
                  "A42": {
                    "type": "boolean"
                  },
                  "A43": {
                    "type": "boolean"
                  },
                  "A44": {
                    "type": "boolean"
                  },
                  "A51": {
                    "type": "boolean"
                  },
                  "A52": {
                    "type": "boolean"
                  },
                  "A53": {
                    "type": "boolean"
                  },
                  "A54": {
                    "type": "boolean"
                  },
                  "A55": {
                    "type": "boolean"
                  },
                  "A56": {
                    "type": "boolean"
                  },
                  "A57": {
                    "type": "boolean"
                  },
                  "A58": {
                    "type": "boolean"
                  },
                  "A61": {
                    "type": "boolean"
                  },
                  "A63": {
                    "type": "boolean"
                  },
                  "B14": {
                    "type": "boolean"
                  },
                  "B21": {
                    "type": "boolean"
                  },
                  "B22": {
                    "type": "boolean"
                  },
                  "B23": {
                    "type": "boolean"
                  },
                  "B24": {
                    "type": "boolean"
                  },
                  "B31": {
                    "type": "boolean"
                  },
                  "B32": {
                    "type": "boolean"
                  },
                  "B33": {
                    "type": "boolean"
                  },
                  "B34": {
                    "type": "boolean"
                  },
                  "B41": {
                    "type": "boolean"
                  },
                  "B42": {
                    "type": "boolean"
                  },
                  "B43": {
                    "type": "boolean"
                  },
                  "B44": {
                    "type": "boolean"
                  },
                  "B45": {
                    "type": "boolean"
                  },
                  "D11": {
                    "type": "boolean"
                  },
                  "D21": {
                    "type": "boolean"
                  },
                  "D22": {
                    "type": "boolean"
                  },
                  "D23": {
                    "type": "boolean"
                  },
                  "D31": {
                    "type": "boolean"
                  },
                  "D32": {
                    "type": "boolean"
                  },
                  "D33": {
                    "type": "boolean"
                  },
                  "D41": {
                    "type": "boolean"
                  },
                  "D42": {
                    "type": "boolean"
                  },
                  "D43": {
                    "type": "boolean"
                  },
                  "date_creation": {
                    "type": "boolean"
                  },
                  "date_modification": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "last_name": {
                    "type": "boolean"
                  },
                  "estamentoId": {
                    "type": "boolean"
                  },
                  "ejecucionId": {
                    "type": "boolean"
                  },
                  "sedeId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "idCuestionarioB",
                    "A11",
                    "A12",
                    "A13",
                    "A21",
                    "A24",
                    "A31",
                    "A32",
                    "A33",
                    "A34",
                    "A35",
                    "A36",
                    "A41",
                    "A42",
                    "A43",
                    "A44",
                    "A51",
                    "A52",
                    "A53",
                    "A54",
                    "A55",
                    "A56",
                    "A57",
                    "A58",
                    "A61",
                    "A63",
                    "B14",
                    "B21",
                    "B22",
                    "B23",
                    "B24",
                    "B31",
                    "B32",
                    "B33",
                    "B34",
                    "B41",
                    "B42",
                    "B43",
                    "B44",
                    "B45",
                    "D11",
                    "D21",
                    "D22",
                    "D23",
                    "D31",
                    "D32",
                    "D33",
                    "D41",
                    "D42",
                    "D43",
                    "date_creation",
                    "date_modification",
                    "name",
                    "last_name",
                    "estamentoId",
                    "ejecucionId",
                    "sedeId"
                  ],
                  "example": "idCuestionarioB"
                },
                "uniqueItems": true
              }
            ],
            "title": "Cuestionarioxb.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Cuestionarioxb>"
      },
      "Cuestionarioxb.Filter1": {
        "type": "object",
        "title": "Cuestionarioxb.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Cuestionarioxb.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "idCuestionarioB": {
                    "type": "boolean"
                  },
                  "A11": {
                    "type": "boolean"
                  },
                  "A12": {
                    "type": "boolean"
                  },
                  "A13": {
                    "type": "boolean"
                  },
                  "A21": {
                    "type": "boolean"
                  },
                  "A24": {
                    "type": "boolean"
                  },
                  "A31": {
                    "type": "boolean"
                  },
                  "A32": {
                    "type": "boolean"
                  },
                  "A33": {
                    "type": "boolean"
                  },
                  "A34": {
                    "type": "boolean"
                  },
                  "A35": {
                    "type": "boolean"
                  },
                  "A36": {
                    "type": "boolean"
                  },
                  "A41": {
                    "type": "boolean"
                  },
                  "A42": {
                    "type": "boolean"
                  },
                  "A43": {
                    "type": "boolean"
                  },
                  "A44": {
                    "type": "boolean"
                  },
                  "A51": {
                    "type": "boolean"
                  },
                  "A52": {
                    "type": "boolean"
                  },
                  "A53": {
                    "type": "boolean"
                  },
                  "A54": {
                    "type": "boolean"
                  },
                  "A55": {
                    "type": "boolean"
                  },
                  "A56": {
                    "type": "boolean"
                  },
                  "A57": {
                    "type": "boolean"
                  },
                  "A58": {
                    "type": "boolean"
                  },
                  "A61": {
                    "type": "boolean"
                  },
                  "A63": {
                    "type": "boolean"
                  },
                  "B14": {
                    "type": "boolean"
                  },
                  "B21": {
                    "type": "boolean"
                  },
                  "B22": {
                    "type": "boolean"
                  },
                  "B23": {
                    "type": "boolean"
                  },
                  "B24": {
                    "type": "boolean"
                  },
                  "B31": {
                    "type": "boolean"
                  },
                  "B32": {
                    "type": "boolean"
                  },
                  "B33": {
                    "type": "boolean"
                  },
                  "B34": {
                    "type": "boolean"
                  },
                  "B41": {
                    "type": "boolean"
                  },
                  "B42": {
                    "type": "boolean"
                  },
                  "B43": {
                    "type": "boolean"
                  },
                  "B44": {
                    "type": "boolean"
                  },
                  "B45": {
                    "type": "boolean"
                  },
                  "D11": {
                    "type": "boolean"
                  },
                  "D21": {
                    "type": "boolean"
                  },
                  "D22": {
                    "type": "boolean"
                  },
                  "D23": {
                    "type": "boolean"
                  },
                  "D31": {
                    "type": "boolean"
                  },
                  "D32": {
                    "type": "boolean"
                  },
                  "D33": {
                    "type": "boolean"
                  },
                  "D41": {
                    "type": "boolean"
                  },
                  "D42": {
                    "type": "boolean"
                  },
                  "D43": {
                    "type": "boolean"
                  },
                  "date_creation": {
                    "type": "boolean"
                  },
                  "date_modification": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "last_name": {
                    "type": "boolean"
                  },
                  "estamentoId": {
                    "type": "boolean"
                  },
                  "ejecucionId": {
                    "type": "boolean"
                  },
                  "sedeId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "idCuestionarioB",
                    "A11",
                    "A12",
                    "A13",
                    "A21",
                    "A24",
                    "A31",
                    "A32",
                    "A33",
                    "A34",
                    "A35",
                    "A36",
                    "A41",
                    "A42",
                    "A43",
                    "A44",
                    "A51",
                    "A52",
                    "A53",
                    "A54",
                    "A55",
                    "A56",
                    "A57",
                    "A58",
                    "A61",
                    "A63",
                    "B14",
                    "B21",
                    "B22",
                    "B23",
                    "B24",
                    "B31",
                    "B32",
                    "B33",
                    "B34",
                    "B41",
                    "B42",
                    "B43",
                    "B44",
                    "B45",
                    "D11",
                    "D21",
                    "D22",
                    "D23",
                    "D31",
                    "D32",
                    "D33",
                    "D41",
                    "D42",
                    "D43",
                    "date_creation",
                    "date_modification",
                    "name",
                    "last_name",
                    "estamentoId",
                    "ejecucionId",
                    "sedeId"
                  ],
                  "example": "idCuestionarioB"
                },
                "uniqueItems": true
              }
            ],
            "title": "Cuestionarioxb.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Cuestionarioxb>"
      },
      "Departamento.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "Departamento.ScopeFilter"
      },
      "Departamento.IncludeFilter.Items": {
        "title": "Departamento.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string"
          },
          "scope": {
            "$ref": "#/components/schemas/Departamento.ScopeFilter"
          }
        }
      },
      "Departamento.Filter": {
        "type": "object",
        "title": "Departamento.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "idDepartment": {
                    "type": "boolean"
                  },
                  "department_name": {
                    "type": "boolean"
                  },
                  "date_creation": {
                    "type": "boolean"
                  },
                  "date_modification": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "idDepartment",
                    "department_name",
                    "date_creation",
                    "date_modification"
                  ],
                  "example": "idDepartment"
                },
                "uniqueItems": true
              }
            ],
            "title": "Departamento.Fields"
          },
          "include": {
            "title": "Departamento.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Departamento.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Departamento>"
      },
      "Departamento.Filter1": {
        "type": "object",
        "title": "Departamento.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Departamento.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "idDepartment": {
                    "type": "boolean"
                  },
                  "department_name": {
                    "type": "boolean"
                  },
                  "date_creation": {
                    "type": "boolean"
                  },
                  "date_modification": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "idDepartment",
                    "department_name",
                    "date_creation",
                    "date_modification"
                  ],
                  "example": "idDepartment"
                },
                "uniqueItems": true
              }
            ],
            "title": "Departamento.Fields"
          },
          "include": {
            "title": "Departamento.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Departamento.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Departamento>"
      },
      "Ejecucion.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "Ejecucion.ScopeFilter"
      },
      "Ejecucion.IncludeFilter.Items": {
        "title": "Ejecucion.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string"
          },
          "scope": {
            "$ref": "#/components/schemas/Ejecucion.ScopeFilter"
          }
        }
      },
      "Ejecucion.Filter": {
        "type": "object",
        "title": "Ejecucion.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "idEjecution": {
                    "type": "boolean"
                  },
                  "state": {
                    "type": "boolean"
                  },
                  "name_aplication": {
                    "type": "boolean"
                  },
                  "date_creation": {
                    "type": "boolean"
                  },
                  "date_modification": {
                    "type": "boolean"
                  },
                  "date_start": {
                    "type": "boolean"
                  },
                  "date_end": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "username": {
                    "type": "boolean"
                  },
                  "yearId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "idEjecution",
                    "state",
                    "name_aplication",
                    "date_creation",
                    "date_modification",
                    "date_start",
                    "date_end",
                    "description",
                    "username",
                    "yearId"
                  ],
                  "example": "idEjecution"
                },
                "uniqueItems": true
              }
            ],
            "title": "Ejecucion.Fields"
          },
          "include": {
            "title": "Ejecucion.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Ejecucion.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Ejecucion>"
      },
      "Ejecucion.Filter1": {
        "type": "object",
        "title": "Ejecucion.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Ejecucion.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "idEjecution": {
                    "type": "boolean"
                  },
                  "state": {
                    "type": "boolean"
                  },
                  "name_aplication": {
                    "type": "boolean"
                  },
                  "date_creation": {
                    "type": "boolean"
                  },
                  "date_modification": {
                    "type": "boolean"
                  },
                  "date_start": {
                    "type": "boolean"
                  },
                  "date_end": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "username": {
                    "type": "boolean"
                  },
                  "yearId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "idEjecution",
                    "state",
                    "name_aplication",
                    "date_creation",
                    "date_modification",
                    "date_start",
                    "date_end",
                    "description",
                    "username",
                    "yearId"
                  ],
                  "example": "idEjecution"
                },
                "uniqueItems": true
              }
            ],
            "title": "Ejecucion.Fields"
          },
          "include": {
            "title": "Ejecucion.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Ejecucion.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Ejecucion>"
      },
      "Estamento.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "Estamento.ScopeFilter"
      },
      "Estamento.IncludeFilter.Items": {
        "title": "Estamento.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string"
          },
          "scope": {
            "$ref": "#/components/schemas/Estamento.ScopeFilter"
          }
        }
      },
      "Estamento.Filter": {
        "type": "object",
        "title": "Estamento.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "idState": {
                    "type": "boolean"
                  },
                  "date_creation": {
                    "type": "boolean"
                  },
                  "date_modification": {
                    "type": "boolean"
                  },
                  "name_state": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "idState",
                    "date_creation",
                    "date_modification",
                    "name_state"
                  ],
                  "example": "idState"
                },
                "uniqueItems": true
              }
            ],
            "title": "Estamento.Fields"
          },
          "include": {
            "title": "Estamento.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Estamento.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Estamento>"
      },
      "Estamento.Filter1": {
        "type": "object",
        "title": "Estamento.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Estamento.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "idState": {
                    "type": "boolean"
                  },
                  "date_creation": {
                    "type": "boolean"
                  },
                  "date_modification": {
                    "type": "boolean"
                  },
                  "name_state": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "idState",
                    "date_creation",
                    "date_modification",
                    "name_state"
                  ],
                  "example": "idState"
                },
                "uniqueItems": true
              }
            ],
            "title": "Estamento.Fields"
          },
          "include": {
            "title": "Estamento.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Estamento.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Estamento>"
      },
      "Parametrizacion.Filter": {
        "type": "object",
        "title": "Parametrizacion.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "idParam": {
                    "type": "boolean"
                  },
                  "key": {
                    "type": "boolean"
                  },
                  "value": {
                    "type": "boolean"
                  },
                  "date_creation": {
                    "type": "boolean"
                  },
                  "date_modification": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "idParam",
                    "key",
                    "value",
                    "date_creation",
                    "date_modification"
                  ],
                  "example": "idParam"
                },
                "uniqueItems": true
              }
            ],
            "title": "Parametrizacion.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Parametrizacion>"
      },
      "Parametrizacion.Filter1": {
        "type": "object",
        "title": "Parametrizacion.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Parametrizacion.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "idParam": {
                    "type": "boolean"
                  },
                  "key": {
                    "type": "boolean"
                  },
                  "value": {
                    "type": "boolean"
                  },
                  "date_creation": {
                    "type": "boolean"
                  },
                  "date_modification": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "idParam",
                    "key",
                    "value",
                    "date_creation",
                    "date_modification"
                  ],
                  "example": "idParam"
                },
                "uniqueItems": true
              }
            ],
            "title": "Parametrizacion.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Parametrizacion>"
      },
      "PingResponse": {
        "type": "object",
        "title": "PingResponse",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      },
      "Proceso.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "Proceso.ScopeFilter"
      },
      "Proceso.IncludeFilter.Items": {
        "title": "Proceso.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string"
          },
          "scope": {
            "$ref": "#/components/schemas/Proceso.ScopeFilter"
          }
        }
      },
      "Proceso.Filter": {
        "type": "object",
        "title": "Proceso.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "idProcess": {
                    "type": "boolean"
                  },
                  "name_process": {
                    "type": "boolean"
                  },
                  "code": {
                    "type": "boolean"
                  },
                  "date_creation": {
                    "type": "boolean"
                  },
                  "date_modification": {
                    "type": "boolean"
                  },
                  "areaId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "idProcess",
                    "name_process",
                    "code",
                    "date_creation",
                    "date_modification",
                    "areaId"
                  ],
                  "example": "idProcess"
                },
                "uniqueItems": true
              }
            ],
            "title": "Proceso.Fields"
          },
          "include": {
            "title": "Proceso.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Proceso.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Proceso>"
      },
      "Proceso.Filter1": {
        "type": "object",
        "title": "Proceso.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Proceso.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "idProcess": {
                    "type": "boolean"
                  },
                  "name_process": {
                    "type": "boolean"
                  },
                  "code": {
                    "type": "boolean"
                  },
                  "date_creation": {
                    "type": "boolean"
                  },
                  "date_modification": {
                    "type": "boolean"
                  },
                  "areaId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "idProcess",
                    "name_process",
                    "code",
                    "date_creation",
                    "date_modification",
                    "areaId"
                  ],
                  "example": "idProcess"
                },
                "uniqueItems": true
              }
            ],
            "title": "Proceso.Fields"
          },
          "include": {
            "title": "Proceso.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Proceso.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Proceso>"
      },
      "Variable.Filter": {
        "type": "object",
        "title": "Variable.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "idVariable": {
                    "type": "boolean"
                  },
                  "name_variable": {
                    "type": "boolean"
                  },
                  "code": {
                    "type": "boolean"
                  },
                  "date_creation": {
                    "type": "boolean"
                  },
                  "date_modification": {
                    "type": "boolean"
                  },
                  "procesoId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "idVariable",
                    "name_variable",
                    "code",
                    "date_creation",
                    "date_modification",
                    "procesoId"
                  ],
                  "example": "idVariable"
                },
                "uniqueItems": true
              }
            ],
            "title": "Variable.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Variable>"
      },
      "Variable.Filter1": {
        "type": "object",
        "title": "Variable.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Variable.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "idVariable": {
                    "type": "boolean"
                  },
                  "name_variable": {
                    "type": "boolean"
                  },
                  "code": {
                    "type": "boolean"
                  },
                  "date_creation": {
                    "type": "boolean"
                  },
                  "date_modification": {
                    "type": "boolean"
                  },
                  "procesoId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "idVariable",
                    "name_variable",
                    "code",
                    "date_creation",
                    "date_modification",
                    "procesoId"
                  ],
                  "example": "idVariable"
                },
                "uniqueItems": true
              }
            ],
            "title": "Variable.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Variable>"
      },
      "Year.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "Year.ScopeFilter"
      },
      "Year.IncludeFilter.Items": {
        "title": "Year.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string"
          },
          "scope": {
            "$ref": "#/components/schemas/Year.ScopeFilter"
          }
        }
      },
      "Year.Filter": {
        "type": "object",
        "title": "Year.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "idYear": {
                    "type": "boolean"
                  },
                  "title": {
                    "type": "boolean"
                  },
                  "date_creation": {
                    "type": "boolean"
                  },
                  "date_modification": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "idYear",
                    "title",
                    "date_creation",
                    "date_modification",
                    "description"
                  ],
                  "example": "idYear"
                },
                "uniqueItems": true
              }
            ],
            "title": "Year.Fields"
          },
          "include": {
            "title": "Year.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Year.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Year>"
      },
      "Year.Filter1": {
        "type": "object",
        "title": "Year.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Year.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "idYear": {
                    "type": "boolean"
                  },
                  "title": {
                    "type": "boolean"
                  },
                  "date_creation": {
                    "type": "boolean"
                  },
                  "date_modification": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "idYear",
                    "title",
                    "date_creation",
                    "date_modification",
                    "description"
                  ],
                  "example": "idYear"
                },
                "uniqueItems": true
              }
            ],
            "title": "Year.Fields"
          },
          "include": {
            "title": "Year.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Year.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Year>"
      }
    }
  }
}