{
  "openapi": "3.0.0",
  "info": {
    "title": "ns-backend-doctors",
    "version": "0.0.1",
    "description": "Emmitec backend implementation for doctors users",
    "contact": {
      "name": "Emmitec.Health"
    }
  },
  "paths": {
    "/ConsultUser/{TypeUser}": {
      "get": {
        "x-controller-name": "UserController",
        "x-operation-name": "ConsultUser",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "test for executing query"
          }
        },
        "parameters": [
          {
            "name": "TypeUser",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "UserController.ConsultUser"
      }
    },
    "/ble-module/doctor/{doctor_key}/patient/{patient_cpf}/measurements/{data_type}": {
      "get": {
        "x-controller-name": "Cuideme_Care_Controller",
        "x-operation-name": "get_ble_upload_link",
        "tags": [
          "Cuideme_Care_Controller"
        ],
        "responses": {},
        "parameters": [
          {
            "name": "doctor_key",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "patient_cpf",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "data_type",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "Cuideme_Care_Controller.get_ble_upload_link"
      }
    },
    "/ble-module/measurement/{token}": {
      "post": {
        "x-controller-name": "Cuideme_Care_Controller",
        "x-operation-name": "post_patient_data",
        "tags": [
          "Cuideme_Care_Controller"
        ],
        "responses": {},
        "parameters": [
          {
            "name": "token",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Cuideme_Care_Measurements_Model"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "Cuideme_Care_Controller.post_patient_data"
      },
      "get": {
        "x-controller-name": "Cuideme_Care_Controller",
        "x-operation-name": "get_ble_upload_parameters",
        "tags": [
          "Cuideme_Care_Controller"
        ],
        "responses": {},
        "parameters": [
          {
            "name": "token",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "Cuideme_Care_Controller.get_ble_upload_parameters"
      }
    },
    "/doctor/{doctor_uuid}/patient/{patient_uuid}/measurements/{data_type}": {
      "post": {
        "x-controller-name": "Cuideme_Care_Controller",
        "x-operation-name": "post_cc_care_measurement",
        "tags": [
          "Cuideme_Care_Controller"
        ],
        "responses": {},
        "parameters": [
          {
            "name": "doctor_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "patient_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "data_type",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Cuideme_Care_Measurements_Model"
              }
            }
          },
          "x-parameter-index": 3
        },
        "operationId": "Cuideme_Care_Controller.post_cc_care_measurement"
      },
      "get": {
        "x-controller-name": "Cuideme_Care_Controller",
        "x-operation-name": "get_cc_care_measurement",
        "tags": [
          "Cuideme_Care_Controller"
        ],
        "responses": {
          "200": {
            "description": "Get Specified Measurement for given patient",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Get Measurement Response"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "doctor_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "patient_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "data_type",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "Cuideme_Care_Controller.get_cc_care_measurement"
      }
    },
    "/getParameterState": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "getParameterState",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/getParameterState"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.getParameterState"
      }
    },
    "/measurements/count": {
      "get": {
        "x-controller-name": "MeasurementController",
        "x-operation-name": "count",
        "tags": [
          "MeasurementController"
        ],
        "responses": {
          "200": {
            "description": "Measurement model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Measurement.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Measurement>"
                }
              }
            }
          }
        ],
        "operationId": "MeasurementController.count"
      }
    },
    "/measurements/{id}": {
      "delete": {
        "x-controller-name": "MeasurementController",
        "x-operation-name": "deleteById",
        "tags": [
          "MeasurementController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Measurement DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "MeasurementController.deleteById"
      }
    },
    "/nextgen/{client_uuid}/authenticate": {
      "post": {
        "x-controller-name": "NEXTGEN_Controller",
        "x-operation-name": "nextgen_authenticate",
        "tags": [
          "NEXTGEN_Controller"
        ],
        "responses": {
          "200": {
            "description": "NextGen authentication",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Nextgen_Login_Model_Response"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Unauthorized"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "client_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Nextgen_Login_Model"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "NEXTGEN_Controller.nextgen_authenticate"
      }
    },
    "/nextgen/{client_uuid}/location": {
      "get": {
        "x-controller-name": "NEXTGEN_Controller",
        "x-operation-name": "get_location_byPatientorProvider",
        "tags": [
          "NEXTGEN_Controller"
        ],
        "responses": {},
        "parameters": [
          {
            "name": "client_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "ng-access-token",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ng-expiration-date",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ng-session-id",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "patient_id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "provider_id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "NEXTGEN_Controller.get_location_byPatientorProvider"
      }
    },
    "/nextgen/{client_uuid}/measurements/cancelled": {
      "post": {
        "x-controller-name": "NEXTGEN_Controller",
        "x-operation-name": "post_cancelled_measurement",
        "tags": [
          "NEXTGEN_Controller"
        ],
        "responses": {},
        "parameters": [
          {
            "name": "ng-access-token",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ng-expiration-date",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ng-session-id",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "client_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/measurement_model"
              }
            }
          },
          "x-parameter-index": 4
        },
        "operationId": "NEXTGEN_Controller.post_cancelled_measurement"
      }
    },
    "/nextgen/{client_uuid}/measurements/{patient_uuid}/latest": {
      "get": {
        "x-controller-name": "NEXTGEN_Controller",
        "x-operation-name": "get_latest_measurements",
        "tags": [
          "NEXTGEN_Controller"
        ],
        "responses": {},
        "parameters": [
          {
            "name": "client_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "patient_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "measurement_count",
            "in": "query",
            "schema": {
              "type": "number"
            },
            "optional": true
          },
          {
            "name": "measurement_type",
            "in": "query",
            "schema": {
              "type": "string"
            },
            "optional": true
          },
          {
            "name": "year",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "NEXTGEN_Controller.get_latest_measurements"
      }
    },
    "/nextgen/{client_uuid}/measurements/{patient_uuid}": {
      "get": {
        "x-controller-name": "NEXTGEN_Controller",
        "x-operation-name": "get_measurement",
        "tags": [
          "NEXTGEN_Controller"
        ],
        "responses": {},
        "parameters": [
          {
            "name": "client_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "patient_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "measurement_count",
            "in": "query",
            "schema": {
              "type": "number"
            },
            "optional": true
          },
          {
            "name": "measurement_type",
            "in": "query",
            "schema": {
              "type": "number"
            },
            "optional": true
          },
          {
            "name": "year",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "NEXTGEN_Controller.get_measurement"
      }
    },
    "/nextgen/{client_uuid}/measurements": {
      "post": {
        "x-controller-name": "NEXTGEN_Controller",
        "x-operation-name": "post_measurement",
        "tags": [
          "NEXTGEN_Controller"
        ],
        "responses": {},
        "parameters": [
          {
            "name": "client_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "ng-access-token",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ng-expiration-date",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ng-session-id",
            "in": "header",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/measurement_model"
              }
            }
          },
          "x-parameter-index": 4
        },
        "operationId": "NEXTGEN_Controller.post_measurement"
      }
    },
    "/nextgen/{client_uuid}/measurementsByDate/{patient_uuid}": {
      "get": {
        "x-controller-name": "NEXTGEN_Controller",
        "x-operation-name": "get_measurementbyDate",
        "tags": [
          "NEXTGEN_Controller"
        ],
        "responses": {},
        "parameters": [
          {
            "name": "client_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "patient_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "measurement_count",
            "in": "query",
            "schema": {
              "type": "number"
            },
            "optional": true
          },
          {
            "name": "measurement_type",
            "in": "query",
            "schema": {
              "type": "number"
            },
            "optional": true
          },
          {
            "name": "start_date",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "end_date",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "NEXTGEN_Controller.get_measurementbyDate"
      }
    },
    "/nextgen/{client_uuid}/patient/{patient_id}/encounters": {
      "post": {
        "x-controller-name": "NEXTGEN_Controller",
        "x-operation-name": "post_encounter",
        "tags": [
          "NEXTGEN_Controller"
        ],
        "responses": {},
        "parameters": [
          {
            "name": "ng-access-token",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ng-session-id",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ng-expiration-date",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "client_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "patient_id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Nextgen_Encounter"
              }
            }
          },
          "x-parameter-index": 5
        },
        "operationId": "NEXTGEN_Controller.post_encounter"
      },
      "get": {
        "x-controller-name": "NEXTGEN_Controller",
        "x-operation-name": "get_encounters_byPatients",
        "tags": [
          "NEXTGEN_Controller"
        ],
        "responses": {},
        "parameters": [
          {
            "name": "ng-access-token",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ng-expiration-date",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ng-session-id",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "client_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "patient_id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "page_number",
            "in": "query",
            "schema": {
              "type": "number"
            }
          },
          {
            "name": "page_size",
            "in": "query",
            "schema": {
              "type": "number"
            }
          }
        ],
        "operationId": "NEXTGEN_Controller.get_encounters_byPatients"
      }
    },
    "/nextgen/{client_uuid}/patient/{patient_id}/vitals": {
      "get": {
        "x-controller-name": "NEXTGEN_Controller",
        "x-operation-name": "get_vitals_byPatient",
        "tags": [
          "NEXTGEN_Controller"
        ],
        "responses": {},
        "parameters": [
          {
            "name": "ng-access-token",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ng-expiration-date",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ng-session-id",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "client_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "patient_id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "page_number",
            "in": "query",
            "schema": {
              "type": "number"
            }
          },
          {
            "name": "page_size",
            "in": "query",
            "schema": {
              "type": "number"
            }
          }
        ],
        "operationId": "NEXTGEN_Controller.get_vitals_byPatient"
      }
    },
    "/nextgen/{client_uuid}/patient/{patient_id}/{encounter_id}/vitals/{vital_id}": {
      "get": {
        "x-controller-name": "NEXTGEN_Controller",
        "x-operation-name": "get_vital_info",
        "tags": [
          "NEXTGEN_Controller"
        ],
        "responses": {},
        "parameters": [
          {
            "name": "ng-access-token",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ng-session-id",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ng-expiration-date",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "client_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "patient_id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "encounter_id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "vital_id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "NEXTGEN_Controller.get_vital_info"
      }
    },
    "/nextgen/{client_uuid}/patient/{patient_id}/{encounter_id}/vitals": {
      "post": {
        "x-controller-name": "NEXTGEN_Controller",
        "x-operation-name": "create_vitals",
        "tags": [
          "NEXTGEN_Controller"
        ],
        "responses": {},
        "parameters": [
          {
            "name": "ng-access-token",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ng-expiration-date",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ng-session-id",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "client_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "patient_id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "encounter_id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Nextgen_Vital"
              }
            }
          },
          "x-parameter-index": 6
        },
        "operationId": "NEXTGEN_Controller.create_vitals"
      }
    },
    "/nextgen/{client_uuid}/patient/{patient_id}/{encounter_id}": {
      "get": {
        "x-controller-name": "NEXTGEN_Controller",
        "x-operation-name": "get_encounter_info",
        "tags": [
          "NEXTGEN_Controller"
        ],
        "responses": {},
        "parameters": [
          {
            "name": "ng-access-token",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ng-session-id",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ng-expiration-date",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "client_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "patient_id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "encounter_id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "NEXTGEN_Controller.get_encounter_info"
      }
    },
    "/nextgen/{client_uuid}/patients/{enterprise_id}/{practice_id}": {
      "get": {
        "x-controller-name": "NEXTGEN_Controller",
        "x-operation-name": "get_practice_patient_list",
        "tags": [
          "NEXTGEN_Controller"
        ],
        "responses": {},
        "parameters": [
          {
            "name": "client_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "enterprise_id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "practice_id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "NEXTGEN_Controller.get_practice_patient_list"
      }
    },
    "/nextgen/{client_uuid}/practice/{practice_id}/locations": {
      "get": {
        "x-controller-name": "NEXTGEN_Controller",
        "x-operation-name": "get_locations_byPractice",
        "tags": [
          "NEXTGEN_Controller"
        ],
        "responses": {},
        "parameters": [
          {
            "name": "ng-access-token",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ng-expiration-date",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ng-session-id",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "client_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "practice_id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "page_number",
            "in": "query",
            "schema": {
              "type": "number"
            }
          },
          {
            "name": "page_size",
            "in": "query",
            "schema": {
              "type": "number"
            }
          }
        ],
        "operationId": "NEXTGEN_Controller.get_locations_byPractice"
      }
    },
    "/nextgen/{client_uuid}/practices": {
      "get": {
        "x-controller-name": "NEXTGEN_Controller",
        "x-operation-name": "get_practices",
        "tags": [
          "NEXTGEN_Controller"
        ],
        "responses": {},
        "parameters": [
          {
            "name": "client_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "NEXTGEN_Controller.get_practices"
      }
    },
    "/nextgen/{client_uuid}/refresh_gsa_token": {
      "post": {
        "x-controller-name": "NEXTGEN_Controller",
        "x-operation-name": "nextgen_refresh_gsa_token",
        "tags": [
          "NEXTGEN_Controller"
        ],
        "responses": {
          "200": {
            "description": "Return value of NEXTGEN_Controller.nextgen_refresh_gsa_token"
          }
        },
        "parameters": [
          {
            "name": "client_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "NEXTGEN_Controller.nextgen_refresh_gsa_token"
      }
    },
    "/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"
      }
    },
    "/reset-password/finish": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "resetPasswordFinish",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Return value of UserController.resetPasswordFinish"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/KeyAndPassword"
              }
            }
          }
        },
        "operationId": "UserController.resetPasswordFinish"
      }
    },
    "/users/count": {
      "get": {
        "x-controller-name": "UserController",
        "x-operation-name": "count",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Users.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Users>"
                }
              }
            }
          }
        ],
        "operationId": "UserController.count"
      }
    },
    "/users/{id}": {
      "get": {
        "x-controller-name": "UserController",
        "x-operation-name": "findById",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/UsersWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Users.Filter"
                }
              }
            }
          }
        ],
        "operationId": "UserController.findById"
      },
      "delete": {
        "x-controller-name": "UserController",
        "x-operation-name": "deleteById",
        "tags": [
          "UserController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users 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 Users model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/UsersWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Users.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "UserController.find"
      }
    },
    "/{clientUuid}/CreateUserForAdmin": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "CreateUserForAdmin",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Users"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateClient"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.CreateUserForAdmin"
      }
    },
    "/{clientUuid}/DeletePathologyUser": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "DeletePathologyUser",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Users"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PathologyUser"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.DeletePathologyUser"
      }
    },
    "/{clientUuid}/DeleteTreatmentUser": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "DeleteTreatmentUser",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Users"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/TreatmentUser"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.DeleteTreatmentUser"
      }
    },
    "/{clientUuid}/DeleteUUidNotificationAgentUser": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "DeleteUUidNotificationAgentUser",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Users"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DeleteUUidNotificationAgentUser"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.DeleteUUidNotificationAgentUser"
      }
    },
    "/{clientUuid}/GetActivePrinciple": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "GetActivePrinciple",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GetActivePrinciple"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.GetActivePrinciple"
      }
    },
    "/{clientUuid}/GetCategoriesPathology": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "GetCategoriesPathology",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GetCategoriesPathology"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.GetCategoriesPathology"
      }
    },
    "/{clientUuid}/GetConcentration": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "GetConcentration",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GetConcentration"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.GetConcentration"
      }
    },
    "/{clientUuid}/GetMedicines": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "GetMedicines",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GetMedicines"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.GetMedicines"
      }
    },
    "/{clientUuid}/GetPathologies": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "GetPathologies",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GetPathologies"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.GetPathologies"
      }
    },
    "/{clientUuid}/GetPharmaceuticalForm": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "GetPharmaceuticalForm",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GetPharmaceuticalForm"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.GetPharmaceuticalForm"
      }
    },
    "/{clientUuid}/GetUserMedicines": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "GetUserMedicines",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GetUserMedicines"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.GetUserMedicines"
      }
    },
    "/{clientUuid}/GetUserMedicinesSingle": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "GetUserMedicinesSingle",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GetUserMedicinesSingle"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.GetUserMedicinesSingle"
      }
    },
    "/{clientUuid}/GetUserNotification": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "GetUserNotification",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GetUserNotification"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.GetUserNotification"
      }
    },
    "/{clientUuid}/GetUserPathologies": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "GetUserPathologies",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GetUserPathologies"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.GetUserPathologies"
      }
    },
    "/{clientUuid}/GetUserPathologiesSingle": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "GetUserPathologiesSingle",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GetUserPathologiesSingle"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.GetUserPathologiesSingle"
      }
    },
    "/{clientUuid}/MedicineUser": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "MedicineUser",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Users"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MedicineUser"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.MedicineUser"
      }
    },
    "/{clientUuid}/PathologyUser": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "PathologyUser",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Users"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PathologyUser"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.PathologyUser"
      }
    },
    "/{clientUuid}/UpdateMeasurement": {
      "post": {
        "x-controller-name": "MeasurementController",
        "x-operation-name": "UpdateMeasurement",
        "tags": [
          "MeasurementController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Update Measurement"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateMeasurement"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MeasurementController.UpdateMeasurement"
      }
    },
    "/{clientUuid}/UpdateNotification": {
      "post": {
        "x-controller-name": "MeasurementController",
        "x-operation-name": "UpdateNotification",
        "tags": [
          "MeasurementController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Update Notification Measurement"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateNotification"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MeasurementController.UpdateNotification"
      }
    },
    "/{clientUuid}/UpdateNotificationGeneric": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "UpdateNotificationGeneric",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Update Notification Measurement"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateNotificationGeneric"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.UpdateNotificationGeneric"
      }
    },
    "/{clientUuid}/UpdatePathologyUser": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "UpdatePathologyUser",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Users"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PathologyUser"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.UpdatePathologyUser"
      }
    },
    "/{clientUuid}/UpdateStatusEmergencieNotificationGeneric": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "UpdateStatusEmergencieNotificationGeneric",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Update Notification Measurement"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateStatusEmergencieNotificationGeneric"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.UpdateStatusEmergencieNotificationGeneric"
      }
    },
    "/{clientUuid}/UpdateStatusNotification": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "UpdateStatusNotification",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Update Notification Measurement"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateStatusNotification"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.UpdateStatusNotification"
      }
    },
    "/{clientUuid}/UpdateSystemReminder": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "UpdateSystemReminder",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Users"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateSystemReminder"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.UpdateSystemReminder"
      }
    },
    "/{clientUuid}/UpdateTreatmentUser": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "UpdateTreatmentUser",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Users"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateTreatmentUser"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.UpdateTreatmentUser"
      }
    },
    "/{clientUuid}/addMeasurement": {
      "post": {
        "x-controller-name": "MeasurementController",
        "x-operation-name": "addMeasurement",
        "tags": [
          "MeasurementController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Add Measurement"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewMeasurement"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MeasurementController.addMeasurement"
      }
    },
    "/{clientUuid}/consultation/assigner/patient/time/modify": {
      "patch": {
        "x-controller-name": "ConsultationController",
        "x-operation-name": "consultationAssignerModifyTime",
        "tags": [
          "ConsultationController"
        ],
        "responses": {
          "200": {
            "description": "User model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Consultation"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "adminUuid": {
                    "type": "string"
                  },
                  "consultationUuid": {
                    "type": "string"
                  },
                  "newTimePerConsultationInMinutes": {
                    "type": "number"
                  },
                  "newQuantitiesPerMonth": {
                    "type": "number"
                  }
                },
                "required": [
                  "adminUuid",
                  "consultationUuid",
                  "newTimePerConsultationInMinutes",
                  "newQuantitiesPerMonth"
                ]
              },
              "title": "Consultation Assigner"
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ConsultationController.consultationAssignerModifyTime"
      }
    },
    "/{clientUuid}/consultation/assigner/patient/time/set": {
      "post": {
        "x-controller-name": "ConsultationController",
        "x-operation-name": "consultationAssignerSetTime",
        "tags": [
          "ConsultationController"
        ],
        "responses": {
          "200": {
            "description": "User model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Consultation"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ConsultationAssigner"
              },
              "title": "Consultation Assigner"
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ConsultationController.consultationAssignerSetTime"
      }
    },
    "/{clientUuid}/consultation/getInfo": {
      "post": {
        "x-controller-name": "ConsultationController",
        "x-operation-name": "getConsultationInfo",
        "tags": [
          "ConsultationController"
        ],
        "responses": {
          "200": {
            "description": "Get Consultation Info",
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "consultation": {
                      "$ref": "#/components/schemas/Get Consultation Info",
                      "definitions": {
                        "Get Consultation Info": {
                          "$ref": "#/components/schemas/Get Consultation Info1"
                        }
                      }
                    },
                    "month": {
                      "type": "string"
                    },
                    "year": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "consultation": {
                    "$ref": "#/components/schemas/Get Consultation Info"
                  },
                  "month": {
                    "type": "string"
                  },
                  "year": {
                    "type": "string"
                  }
                },
                "required": [
                  "consultation",
                  "month",
                  "year"
                ]
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ConsultationController.getConsultationInfo"
      }
    },
    "/{clientUuid}/consultation/management": {
      "post": {
        "x-controller-name": "ConsultationController",
        "x-operation-name": "managementConsultation",
        "tags": [
          "ConsultationController"
        ],
        "responses": {
          "200": {
            "description": "Management Consultation",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Consultation"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Management Consultation"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ConsultationController.managementConsultation"
      }
    },
    "/{clientUuid}/consultation/patients/time/info": {
      "get": {
        "x-controller-name": "ConsultationController",
        "x-operation-name": "consultationPatients",
        "tags": [
          "ConsultationController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Array of PatientInfo model instances"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "patientUuid",
            "in": "query",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "doctorUuid",
            "in": "query",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "ConsultationController.consultationPatients"
      }
    },
    "/{clientUuid}/consultation/reports": {
      "post": {
        "x-controller-name": "ConsultationController",
        "x-operation-name": "create",
        "tags": [
          "ConsultationController"
        ],
        "responses": {
          "200": {
            "description": "Consultation reports",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ConsultationReportItem"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Consultation Reports Request"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ConsultationController.create"
      }
    },
    "/{clientUuid}/createSystemReminder": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "createSystemReminder",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Users"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/createSystemReminder"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.createSystemReminder"
      }
    },
    "/{clientUuid}/createUserHistoryComment": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "createUserHistoryComment",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/NewComment"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/createUserHistoryComment"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.createUserHistoryComment"
      }
    },
    "/{clientUuid}/deleteUser": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "deleteUser",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Users"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/deleteUser"
              }
            }
          }
        },
        "operationId": "UserController.deleteUser"
      }
    },
    "/{clientUuid}/delete_medical_file": {
      "delete": {
        "x-controller-name": "StorageController",
        "x-operation-name": "delete_file",
        "tags": [
          "StorageController"
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/store_item"
                }
              }
            },
            "description": "Method used to delete a file from AWS S3"
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/store_item"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "StorageController.delete_file"
      }
    },
    "/{clientUuid}/doctorSpecialties/byClient": {
      "get": {
        "x-controller-name": "DoctorSpecialtiesController",
        "x-operation-name": "getDoctorSpecialtiesByClient",
        "tags": [
          "DoctorSpecialtiesController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Get doctor specialties by client"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "DoctorSpecialtiesController.getDoctorSpecialtiesByClient"
      }
    },
    "/{clientUuid}/doctorSpecialties/get": {
      "post": {
        "x-controller-name": "DoctorSpecialtiesController",
        "x-operation-name": "getDoctorSpecialties",
        "tags": [
          "DoctorSpecialtiesController"
        ],
        "responses": {
          "200": {
            "description": "Get Doctor Specialties",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DoctorSpecialties"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Get Doctor Specialties"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "DoctorSpecialtiesController.getDoctorSpecialties"
      }
    },
    "/{clientUuid}/doctorSpecialties/getGeneralSpecialties": {
      "post": {
        "x-controller-name": "DoctorSpecialtiesController",
        "x-operation-name": "getGeneralDoctorSpecialties",
        "tags": [
          "DoctorSpecialtiesController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Get doctor specialties by client"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "doctorUuid": {
                    "type": "string"
                  }
                },
                "required": [
                  "doctorUuid"
                ]
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "DoctorSpecialtiesController.getGeneralDoctorSpecialties"
      }
    },
    "/{clientUuid}/email/send": {
      "post": {
        "x-controller-name": "EmailController",
        "x-operation-name": "sendEmail",
        "tags": [
          "EmailController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Send email response"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/sendEmail"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "EmailController.sendEmail"
      }
    },
    "/{clientUuid}/forget-password": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "resetPasswordInit",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Return value of UserController.resetPasswordInit"
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ResetPasswordInit"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.resetPasswordInit"
      }
    },
    "/{clientUuid}/getCampaigns": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "getCampaigns",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Users"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/getCampaigns"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.getCampaigns"
      }
    },
    "/{clientUuid}/getLastMeasurements": {
      "post": {
        "x-controller-name": "MeasurementController",
        "x-operation-name": "getLastMeasurements",
        "tags": [
          "MeasurementController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Get Last Measurement"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/getLastMeasurement"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MeasurementController.getLastMeasurements"
      }
    },
    "/{clientUuid}/getMeasurement": {
      "post": {
        "x-controller-name": "MeasurementController",
        "x-operation-name": "getMeasurement",
        "tags": [
          "MeasurementController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Get Measurement"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/getMeasurement"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MeasurementController.getMeasurement"
      }
    },
    "/{clientUuid}/getMeasurementWithTop": {
      "get": {
        "x-controller-name": "MeasurementController",
        "x-operation-name": "getMeasurementWithTop",
        "tags": [
          "MeasurementController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Get Measurement with top"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "patientUuid",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "month",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "year",
            "in": "query",
            "schema": {
              "type": "number"
            }
          },
          {
            "name": "typeMeasurement",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sampleCount",
            "in": "query",
            "schema": {
              "type": "number"
            }
          }
        ],
        "operationId": "MeasurementController.getMeasurementWithTop"
      }
    },
    "/{clientUuid}/getPatientInfo": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "getPatientInfo",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Users"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GetPatientInfo"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.getPatientInfo"
      }
    },
    "/{clientUuid}/getUserCardiologyHistory": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "getUserCardiologyHistory",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/getUserCardiologyHistory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.getUserCardiologyHistory"
      }
    },
    "/{clientUuid}/getUserDermatologyHistory": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "getUserDermatologyHistory",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/getUserDermatologyHistory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.getUserDermatologyHistory"
      }
    },
    "/{clientUuid}/getUserEmergencyNotifications": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "getUserEmergencyNotifications",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/getUserEmergencyNotifications"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.getUserEmergencyNotifications"
      }
    },
    "/{clientUuid}/getUserGastroenterologyHistory": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "getUserGastroenterologyHistory",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/getUserGastroenterologyHistory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.getUserGastroenterologyHistory"
      }
    },
    "/{clientUuid}/getUserGinecologyHistory": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "getUserGinecologyHistory",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/getUserGinecologyHistory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.getUserGinecologyHistory"
      }
    },
    "/{clientUuid}/getUserHistoryComments": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "getUserHistoryComments",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/getUserHistoryComments"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.getUserHistoryComments"
      }
    },
    "/{clientUuid}/getUserInfo": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "GetUserInfo",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Users"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GetUserInfo"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.GetUserInfo"
      }
    },
    "/{clientUuid}/getUserInternalHistory": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "getUserInternalHistory",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/getUserInternalHistory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.getUserInternalHistory"
      }
    },
    "/{clientUuid}/getUserMedicalHistory": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "getUserMedicalHistory",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/getUserMedicalHistory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.getUserMedicalHistory"
      }
    },
    "/{clientUuid}/getUserNotifications": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "getUserNotifications",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/getUserNotifications"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.getUserNotifications"
      }
    },
    "/{clientUuid}/getUserNotificationsConsult": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "getUserNotificationsConsult",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/getUserNotificationsConsult"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.getUserNotificationsConsult"
      }
    },
    "/{clientUuid}/getUserOphtalmologyHistory": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "getUserOphtalmologyHistory",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/getUserOphtalmologyHistory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.getUserOphtalmologyHistory"
      }
    },
    "/{clientUuid}/getUserOtorhinolaryngologyHistory": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "getUserOtorhinolaryngologyHistory",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/getUserOtorhinolaryngologyHistory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.getUserOtorhinolaryngologyHistory"
      }
    },
    "/{clientUuid}/getUserParameters": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "getUserParameters",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/getUserParameters"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.getUserParameters"
      }
    },
    "/{clientUuid}/getUserPediatricsHistory": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "getUserPediatricsHistory",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/getUserPediatricsHistory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.getUserPediatricsHistory"
      }
    },
    "/{clientUuid}/getUserPreferences": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "getUserPreferences",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Users"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GetUserPreferences"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.getUserPreferences"
      }
    },
    "/{clientUuid}/getUserPsychiatryHistory": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "getUserPsychiatryHistory",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/getUserPsychiatryHistory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.getUserPsychiatryHistory"
      }
    },
    "/{clientUuid}/getUserStatisticsDoctor": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "getUserStatisticsDoctor",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Users"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/getUserStatisticsDoctor"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.getUserStatisticsDoctor"
      }
    },
    "/{clientUuid}/getUserSurgeryHistory": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "getUserSurgeryHistory",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/getUserSurgeryHistory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.getUserSurgeryHistory"
      }
    },
    "/{clientUuid}/getUsers": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "getUsers",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Users"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/getUSers"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.getUsers"
      }
    },
    "/{clientUuid}/getUuidNotificationSingle": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "getUuidNotificationSingle",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/getUuidNotificationSingle"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.getUuidNotificationSingle"
      }
    },
    "/{clientUuid}/get_medical_file/{userUuid}/file/{fileName}": {
      "get": {
        "x-controller-name": "StorageController",
        "x-operation-name": "download_file",
        "tags": [
          "StorageController"
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/store_item"
                }
              }
            },
            "description": "Method used to upload a profile image to AWS S3"
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "userUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "fileName",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "StorageController.download_file"
      }
    },
    "/{clientUuid}/get_profile_image/{userUuid}": {
      "get": {
        "x-controller-name": "StorageController",
        "x-operation-name": "getProfileImage",
        "tags": [
          "StorageController"
        ],
        "responses": {
          "200": {
            "description": "Get aws3 certified link for profile image in the bucket"
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "userUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "StorageController.getProfileImage"
      }
    },
    "/{clientUuid}/list_medical_file/{userUuid}": {
      "get": {
        "x-controller-name": "StorageController",
        "x-operation-name": "list_file",
        "tags": [
          "StorageController"
        ],
        "responses": {
          "200": {
            "description": "Method used to upload a profile image to AWS S3"
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "userUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "StorageController.list_file"
      }
    },
    "/{clientUuid}/login": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "login",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Token",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "token": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "device-version",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "device-type",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "platform-version",
            "in": "header",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Login"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.login"
      }
    },
    "/{clientUuid}/logout": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "logout",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Logout successful",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "ok": {
                      "type": "boolean"
                    }
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.logout"
      }
    },
    "/{clientUuid}/medicalHistory/medicalEvolution/get": {
      "post": {
        "x-controller-name": "MedicalHistoryController",
        "x-operation-name": "getMedicalEvolutionForm",
        "tags": [
          "MedicalHistoryController"
        ],
        "responses": {
          "200": {
            "description": "Get Medical Evolution Form",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MedicalEvolutionHistory"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "patientUuid": {
                    "type": "string"
                  }
                },
                "required": [
                  "patientUuid"
                ]
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MedicalHistoryController.getMedicalEvolutionForm"
      }
    },
    "/{clientUuid}/medicalHistory/medicalEvolution": {
      "post": {
        "x-controller-name": "MedicalHistoryController",
        "x-operation-name": "uploadMedicalEvolutionForm",
        "tags": [
          "MedicalHistoryController"
        ],
        "responses": {
          "200": {
            "description": "upload Medical Evolution Form",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MedicalEvolutionHistory"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/upload Medical Evolution Form"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MedicalHistoryController.uploadMedicalEvolutionForm"
      }
    },
    "/{clientUuid}/medicalHistory/medicalEvolutionAps/get": {
      "post": {
        "x-controller-name": "MedicalHistoryController",
        "x-operation-name": "getMedicalEvolutionApsForm",
        "tags": [
          "MedicalHistoryController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Get medical Evolution Aps Form"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "patientUuid": {
                    "type": "string"
                  }
                },
                "required": [
                  "patientUuid"
                ]
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MedicalHistoryController.getMedicalEvolutionApsForm"
      }
    },
    "/{clientUuid}/medicalHistory/medicalEvolutionAps": {
      "post": {
        "x-controller-name": "MedicalHistoryController",
        "x-operation-name": "getMedicalEvolutionAPSForm",
        "tags": [
          "MedicalHistoryController"
        ],
        "responses": {
          "200": {
            "description": "Update medical Evolution Aps Form",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MedicalEvolutionAps"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Upload Medical Evolution Aps Form"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MedicalHistoryController.getMedicalEvolutionAPSForm"
      }
    },
    "/{clientUuid}/medicalHistory/medicalEvolutionHomeCare/get": {
      "post": {
        "x-controller-name": "MedicalHistoryController",
        "x-operation-name": "getMedicalEvolutionHomeCareForm",
        "tags": [
          "MedicalHistoryController"
        ],
        "responses": {
          "200": {
            "description": "Get medical Evolution Home Care Form",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/NursingEvolutionHistory"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "patientUuid": {
                    "type": "string"
                  }
                },
                "required": [
                  "patientUuid"
                ]
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MedicalHistoryController.getMedicalEvolutionHomeCareForm"
      }
    },
    "/{clientUuid}/medicalHistory/medicalEvolutionHomeCare": {
      "post": {
        "x-controller-name": "MedicalHistoryController",
        "x-operation-name": "updateMedicalEvolutionHomeCareForm",
        "tags": [
          "MedicalHistoryController"
        ],
        "responses": {
          "200": {
            "description": "Get Nursing Evolution Form",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MedicalEvolutionHomeCare"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Upload Medical Evolution Home Care Form"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MedicalHistoryController.updateMedicalEvolutionHomeCareForm"
      }
    },
    "/{clientUuid}/medicalHistory/medicalReferrals": {
      "post": {
        "x-controller-name": "MedicalHistoryController",
        "x-operation-name": "getMedicalReferralsForm",
        "tags": [
          "MedicalHistoryController"
        ],
        "responses": {
          "200": {
            "description": "Update medical referrals Form",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MedicalReferrals"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Upload Medical Referrals Form"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MedicalHistoryController.getMedicalReferralsForm"
      },
      "get": {
        "x-controller-name": "MedicalHistoryController",
        "x-operation-name": "getMedicalReferrals",
        "tags": [
          "MedicalHistoryController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Get medical referrals"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "patientUuid",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "MedicalHistoryController.getMedicalReferrals"
      }
    },
    "/{clientUuid}/medicalHistory/nursingEvolution/get": {
      "post": {
        "x-controller-name": "MedicalHistoryController",
        "x-operation-name": "getNursingEvolutionForm",
        "tags": [
          "MedicalHistoryController"
        ],
        "responses": {
          "200": {
            "description": "Get Nursing Evolution Form",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/NursingEvolutionHistory"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "patientUuid": {
                    "type": "string"
                  }
                },
                "required": [
                  "patientUuid"
                ]
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MedicalHistoryController.getNursingEvolutionForm"
      }
    },
    "/{clientUuid}/medicalHistory/nursingEvolution": {
      "post": {
        "x-controller-name": "MedicalHistoryController",
        "x-operation-name": "uploadNursingEvolutionForm",
        "tags": [
          "MedicalHistoryController"
        ],
        "responses": {
          "200": {
            "description": "Upload Nursing Evolution Form",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/NursingEvolutionHistory"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Upload Nursing Evolution Form"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MedicalHistoryController.uploadNursingEvolutionForm"
      }
    },
    "/{clientUuid}/medicalHistory/professionalServiceGuide/get": {
      "post": {
        "x-controller-name": "MedicalHistoryController",
        "x-operation-name": "getProfessionalServiceGuideForm",
        "tags": [
          "MedicalHistoryController"
        ],
        "responses": {
          "200": {
            "description": "Get Professional Service Guide Form",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ProfessionalServiceGuideForm"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "patientUuid": {
                    "type": "string"
                  }
                },
                "required": [
                  "patientUuid"
                ]
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MedicalHistoryController.getProfessionalServiceGuideForm"
      }
    },
    "/{clientUuid}/medicalHistory/professionalServiceGuide": {
      "post": {
        "x-controller-name": "MedicalHistoryController",
        "x-operation-name": "uploadProfessionalServiceGuideForm",
        "tags": [
          "MedicalHistoryController"
        ],
        "responses": {
          "200": {
            "description": "Upload Professional Service Guide Form",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProfessionalServiceGuideForm"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Upload Professional Service Guide Form"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MedicalHistoryController.uploadProfessionalServiceGuideForm"
      }
    },
    "/{clientUuid}/medicalHistory/prontuarioHomeCare/get": {
      "post": {
        "x-controller-name": "MedicalHistoryController",
        "x-operation-name": "getProntuarioHomeCareForm",
        "tags": [
          "MedicalHistoryController"
        ],
        "responses": {
          "200": {
            "description": "Get Prontuario Home Care Form",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ProntuarioHomeCare"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "patientUuid": {
                    "type": "string"
                  }
                },
                "required": [
                  "patientUuid"
                ]
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MedicalHistoryController.getProntuarioHomeCareForm"
      }
    },
    "/{clientUuid}/medicalHistory/prontuarioHomeCare": {
      "post": {
        "x-controller-name": "MedicalHistoryController",
        "x-operation-name": "uploadProntuarioHomeCareForm",
        "tags": [
          "MedicalHistoryController"
        ],
        "responses": {
          "200": {
            "description": "Upload Prontuario Home Care Form",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProntuarioHomeCare"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Upload Prontuario Home Care Form"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MedicalHistoryController.uploadProntuarioHomeCareForm"
      }
    },
    "/{clientUuid}/reports/rpm-usage/all": {
      "get": {
        "x-controller-name": "RpmUsageController",
        "x-operation-name": "getAllRpmUsage",
        "tags": [
          "RpmUsageController"
        ],
        "responses": {
          "200": {
            "description": "Return value of RpmUsageController.getAllRpmUsage"
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "startDate",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "endDate",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "typeMeasurement",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "doctorUuid",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "userRole",
            "in": "query",
            "schema": {
              "type": "number"
            }
          },
          {
            "name": "timeZoneOffset",
            "in": "query",
            "schema": {
              "type": "number"
            }
          }
        ],
        "operationId": "RpmUsageController.getAllRpmUsage"
      }
    },
    "/{clientUuid}/reports/rpm-usage/patients-days-with-readings/required-reading-days": {
      "patch": {
        "x-controller-name": "RpmUsageController",
        "x-operation-name": "setPatientsRequiredReadingDays",
        "tags": [
          "RpmUsageController"
        ],
        "responses": {
          "200": {
            "description": "Return value of RpmUsageController.setPatientsRequiredReadingDays"
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "RpmUsageController.setPatientsRequiredReadingDays"
      },
      "get": {
        "x-controller-name": "RpmUsageController",
        "x-operation-name": "getPatientsRequiredReadingDays",
        "tags": [
          "RpmUsageController"
        ],
        "responses": {
          "200": {
            "description": "Return value of RpmUsageController.getPatientsRequiredReadingDays"
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "RpmUsageController.getPatientsRequiredReadingDays"
      }
    },
    "/{clientUuid}/reports/rpm-usage/patients-days-with-readings/summary": {
      "get": {
        "x-controller-name": "RpmUsageController",
        "x-operation-name": "getPatientsDaysWithReadingsSummary",
        "tags": [
          "RpmUsageController"
        ],
        "responses": {
          "200": {
            "description": "Return value of RpmUsageController.getPatientsDaysWithReadingsSummary"
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "startDate",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "endDate",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "patientUuid",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "typeMeasurement",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "timeZoneOffset",
            "in": "query",
            "schema": {
              "type": "number"
            }
          }
        ],
        "operationId": "RpmUsageController.getPatientsDaysWithReadingsSummary"
      }
    },
    "/{clientUuid}/reports/rpm-usage/patients-days-with-readings": {
      "get": {
        "x-controller-name": "RpmUsageController",
        "x-operation-name": "getPatientsDaysWithReadings",
        "tags": [
          "RpmUsageController"
        ],
        "responses": {
          "200": {
            "description": "Return value of RpmUsageController.getPatientsDaysWithReadings"
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "startDate",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "endDate",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "patientUuid",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "typeMeasurement",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "timeZoneOffset",
            "in": "query",
            "schema": {
              "type": "number"
            }
          }
        ],
        "operationId": "RpmUsageController.getPatientsDaysWithReadings"
      }
    },
    "/{clientUuid}/reports/rpm-usage": {
      "get": {
        "x-controller-name": "RpmUsageController",
        "x-operation-name": "getRpmUsage",
        "tags": [
          "RpmUsageController"
        ],
        "responses": {
          "200": {
            "description": "Return value of RpmUsageController.getRpmUsage"
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "startDate",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "endDate",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "typeMeasurement",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "doctorUuid",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "userRole",
            "in": "query",
            "schema": {
              "type": "number"
            }
          },
          {
            "name": "timeZoneOffset",
            "in": "query",
            "schema": {
              "type": "number"
            }
          }
        ],
        "operationId": "RpmUsageController.getRpmUsage"
      }
    },
    "/{client_uuid}/server/login/{user_type}": {
      "get": {
        "x-controller-name": "UserController",
        "x-operation-name": "server_login",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Return value of UserController.server_login"
          }
        },
        "parameters": [
          {
            "name": "client_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "user_type",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "UserController.server_login"
      }
    },
    "/{clientUuid}/setParameterState": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "setParameterState",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Users model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/setParameterState"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.setParameterState"
      }
    },
    "/{clientUuid}/set_medical_file/{userUuid}": {
      "post": {
        "x-controller-name": "StorageController",
        "x-operation-name": "upload_file",
        "tags": [
          "StorageController"
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            },
            "description": "Method used to upload a profile image to AWS S3"
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "userUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "x-parser": "stream",
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary"
                  }
                }
              }
            }
          },
          "description": "Request body for multipart/form-data based file upload",
          "required": true
        },
        "operationId": "StorageController.upload_file"
      }
    },
    "/{clientUuid}/set_profile_image/{userUuid}": {
      "post": {
        "x-controller-name": "StorageController",
        "x-operation-name": "setProfileImage",
        "tags": [
          "StorageController"
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            },
            "description": "Method used to upload a profile image to AWS S3"
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "userUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "x-parser": "stream",
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary"
                  }
                }
              }
            }
          },
          "description": "Request body for multipart/form-data based file upload",
          "required": true,
          "x-parameter-index": 2
        },
        "operationId": "StorageController.setProfileImage"
      }
    },
    "/{clientUuid}/signup": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "signup",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Users"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewUsers"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.signup"
      }
    },
    "/{clientUuid}/survey/satisfactory": {
      "post": {
        "x-controller-name": "SatisfactionSurveyController",
        "x-operation-name": "submitSurvey",
        "tags": [
          "SatisfactionSurveyController"
        ],
        "responses": {
          "200": {
            "description": "SatisfactionSurvey submission",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SatisfactionSurvey"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SubmitSatisfactionSurvey"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "SatisfactionSurveyController.submitSurvey"
      }
    },
    "/{clientUuid}/updateCardiologyHistory": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "updateCardiologyHistory",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CardiologyHistory"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/updateCardiologyHistory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.updateCardiologyHistory"
      }
    },
    "/{clientUuid}/updateDermatologyHistory": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "updateDermatologyHistory",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DermatologyHistory"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/updateDermatologyHistory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.updateDermatologyHistory"
      }
    },
    "/{clientUuid}/updateGastroenterologyHistory": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "updateGastroenterologyHistory",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GastroenterologyHistory"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/updateGastroenterologyHistory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.updateGastroenterologyHistory"
      }
    },
    "/{clientUuid}/updateGeneralHistory": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "updateGeneralHistory",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GeneralHistory"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/updateGeneralHistory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.updateGeneralHistory"
      }
    },
    "/{clientUuid}/updateGinecologyHistory": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "updateGinecologyHistory",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GinecologyHistory"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/updateGinecologyHistory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.updateGinecologyHistory"
      }
    },
    "/{clientUuid}/updateInternalHistory": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "updateInternalHistory",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/InternalHistory"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/updateInternalHistory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.updateInternalHistory"
      }
    },
    "/{clientUuid}/updateMedicalHistory": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "updateMedicalHistory",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MedicalHistory"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/updateMedicalHistory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.updateMedicalHistory"
      }
    },
    "/{clientUuid}/updateOphtalmologyHistory": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "updateOphtalmologyHistory",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OphtalmologyHistory"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/updateOphtalmologyHistory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.updateOphtalmologyHistory"
      }
    },
    "/{clientUuid}/updateOtorhinolaryngologyHistory": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "updateOtorhinolaryngologyHistory",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OtorhinolaryngologyHistory"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/updateOtorhinolaryngologyHistory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.updateOtorhinolaryngologyHistory"
      }
    },
    "/{clientUuid}/updatePediatricsHistory": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "updatePediatricsHistory",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PediatricsHistory"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/updatePediatricsHistory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.updatePediatricsHistory"
      }
    },
    "/{clientUuid}/updatePsychiatryHistory": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "updatePsychiatryHistory",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PsychiatryHistory"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/updatePsychiatryHistory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.updatePsychiatryHistory"
      }
    },
    "/{clientUuid}/updateSurgeryHistory": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "updateSurgeryHistory",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SurgeryHistory"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/updateSurgeryHistory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.updateSurgeryHistory"
      }
    },
    "/{clientUuid}/updateUser": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "updateUser",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Users"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateUser"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.updateUser"
      }
    },
    "/{clientUuid}/updateUserParameters": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "updateUserParameters",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AlertParameter"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/updateUserParameters"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.updateUserParameters"
      }
    },
    "/{clientUuid}/updateUserParameters2": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "updateUserParameters2",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AlertParameter2"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/updateUserParameters2"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.updateUserParameters2"
      }
    },
    "/{clientUuid}/updateUserParameters4": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "updateUserParameters4",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Users model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AlertParameter2"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/updateUserParameters4"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserController.updateUserParameters4"
      }
    },
    "/{client_uuid}/user/delete": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "delete_user",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Return value of UserController.delete_user"
          }
        },
        "parameters": [
          {
            "name": "client_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "UserController.delete_user"
      }
    },
    "/{client_uuid}/user/restore": {
      "put": {
        "x-controller-name": "UserController",
        "x-operation-name": "restore_user",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "Return value of UserController.restore_user"
          }
        },
        "parameters": [
          {
            "name": "client_uuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "UserController.restore_user"
      }
    },
    "/{clientUuid}/v2/parameters/state": {
      "post": {
        "x-controller-name": "UserParametersController",
        "x-operation-name": "setParameterStateV2",
        "tags": [
          "UserParametersController"
        ],
        "responses": {
          "200": {
            "description": "Return value of UserParametersController.setParameterStateV2"
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserParametersController.setParameterStateV2"
      }
    },
    "/{clientUuid}/v2/parameters/update": {
      "post": {
        "x-controller-name": "UserParametersController",
        "x-operation-name": "updateUserParametersV2",
        "tags": [
          "UserParametersController"
        ],
        "responses": {
          "200": {
            "description": "Return value of UserParametersController.updateUserParametersV2"
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserParametersController.updateUserParametersV2"
      }
    },
    "/{clientUuid}/v2/parameters": {
      "get": {
        "x-controller-name": "UserParametersController",
        "x-operation-name": "getUserParametersV2",
        "tags": [
          "UserParametersController"
        ],
        "responses": {
          "200": {
            "description": "Return value of UserParametersController.getUserParametersV2"
          }
        },
        "parameters": [
          {
            "name": "clientUuid",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "patientUuid",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "doctorUuid",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "typeMeasurement",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "UserParametersController.getUserParametersV2"
      }
    }
  },
  "servers": [
    {
      "url": "http://3.212.252.209"
    }
  ],
  "components": {
    "schemas": {
      "Login": {
        "title": "Login",
        "type": "object",
        "properties": {
          "email": {
            "type": "string"
          },
          "password": {
            "type": "string"
          },
          "domain": {
            "type": "string"
          }
        },
        "required": [
          "email",
          "password"
        ],
        "additionalProperties": false
      },
      "Users": {
        "title": "Users",
        "type": "object",
        "properties": {
          "user_id": {
            "type": "number"
          },
          "uuid": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "user_name": {
            "type": "string"
          },
          "type_user_id": {
            "type": "number"
          },
          "password": {
            "type": "string"
          },
          "uuid_clinic": {
            "type": "string"
          },
          "reference_id": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "last_name": {
            "type": "string"
          },
          "birth_date": {
            "type": "string"
          },
          "phone": {
            "type": "string"
          },
          "emergency_phone": {
            "type": "string"
          },
          "birth_address_id": {
            "type": "number"
          },
          "address_id": {
            "type": "number"
          },
          "height": {
            "type": "number"
          },
          "Weight": {
            "type": "number"
          },
          "gender_id": {
            "type": "number"
          },
          "reset_key": {
            "type": "string"
          },
          "check_flag": {
            "type": "number"
          },
          "cnmaeusua": {
            "type": "string"
          },
          "domain_id": {
            "type": "number"
          },
          "Photo": {
            "type": "string"
          },
          "fcmToken": {
            "type": "string"
          },
          "endpointARN": {
            "type": "string"
          },
          "unit_height_id": {
            "type": "number"
          },
          "unit_weight_id": {
            "type": "number"
          },
          "unit_temperature_id": {
            "type": "number"
          }
        },
        "required": [
          "uuid",
          "email",
          "user_name",
          "type_user_id",
          "password",
          "uuid_clinic",
          "reference_id",
          "name",
          "last_name",
          "birth_date",
          "phone",
          "birth_address_id",
          "address_id",
          "gender_id"
        ],
        "additionalProperties": false
      },
      "getUSers": {
        "title": "getUSers",
        "type": "object",
        "description": "(tsType: UserType, schemaOptions: { title: 'getUSers' })",
        "properties": {
          "type_user_id": {
            "type": "number"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "type_user_id"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserType"
      },
      "GetUserInfo": {
        "title": "GetUserInfo",
        "type": "object",
        "description": "(tsType: UserUuid, schemaOptions: { title: 'GetUserInfo' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserUuid"
      },
      "GetPatientInfo": {
        "title": "GetPatientInfo",
        "type": "object",
        "description": "(tsType: UserUuid, schemaOptions: { title: 'GetPatientInfo' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserUuid"
      },
      "GetUserPreferences": {
        "title": "GetUserPreferences",
        "type": "object",
        "description": "(tsType: UserUuid, schemaOptions: { title: 'GetUserPreferences' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserUuid"
      },
      "GetUserPathologies": {
        "title": "GetUserPathologies",
        "type": "object",
        "description": "(tsType: UserUuid, schemaOptions: { title: 'GetUserPathologies' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserUuid"
      },
      "UserUuid": {
        "title": "UserUuid",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false
      },
      "GetUserNotification": {
        "title": "GetUserNotification",
        "type": "object",
        "description": "(tsType: UserUuid, schemaOptions: { title: 'GetUserNotification' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserUuid"
      },
      "createSystemReminder": {
        "title": "createSystemReminder",
        "type": "object",
        "description": "(tsType: NotificactionFilter, schemaOptions: { title: 'createSystemReminder' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "commentDoctor": {
            "type": "string"
          },
          "measurement_type": {
            "type": "string"
          },
          "notification_status": {
            "type": "string"
          },
          "notification_level": {
            "type": "string"
          },
          "status_measurement": {
            "type": "string"
          },
          "nog_id": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "nusId": {
            "type": "string"
          },
          "read_all": {
            "type": "string"
          },
          "val_time": {
            "type": "string"
          },
          "before_time": {
            "type": "string"
          },
          "UuidNotification": {
            "type": "string"
          },
          "from_date": {
            "type": "string"
          },
          "to_date": {
            "type": "string"
          },
          "timezone_offset": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "NotificactionFilter"
      },
      "NotificactionFilter": {
        "title": "NotificactionFilter",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "commentDoctor": {
            "type": "string"
          },
          "measurement_type": {
            "type": "string"
          },
          "notification_status": {
            "type": "string"
          },
          "notification_level": {
            "type": "string"
          },
          "status_measurement": {
            "type": "string"
          },
          "nog_id": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "nusId": {
            "type": "string"
          },
          "read_all": {
            "type": "string"
          },
          "val_time": {
            "type": "string"
          },
          "before_time": {
            "type": "string"
          },
          "UuidNotification": {
            "type": "string"
          },
          "from_date": {
            "type": "string"
          },
          "to_date": {
            "type": "string"
          },
          "timezone_offset": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "UpdateSystemReminder": {
        "title": "UpdateSystemReminder",
        "type": "object",
        "description": "(tsType: NotificactionFilter, schemaOptions: { title: 'UpdateSystemReminder' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "commentDoctor": {
            "type": "string"
          },
          "measurement_type": {
            "type": "string"
          },
          "notification_status": {
            "type": "string"
          },
          "notification_level": {
            "type": "string"
          },
          "status_measurement": {
            "type": "string"
          },
          "nog_id": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "nusId": {
            "type": "string"
          },
          "read_all": {
            "type": "string"
          },
          "val_time": {
            "type": "string"
          },
          "before_time": {
            "type": "string"
          },
          "UuidNotification": {
            "type": "string"
          },
          "from_date": {
            "type": "string"
          },
          "to_date": {
            "type": "string"
          },
          "timezone_offset": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "NotificactionFilter"
      },
      "getUserNotifications": {
        "title": "getUserNotifications",
        "type": "object",
        "description": "(tsType: NotificactionFilter, schemaOptions: { title: 'getUserNotifications' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "commentDoctor": {
            "type": "string"
          },
          "measurement_type": {
            "type": "string"
          },
          "notification_status": {
            "type": "string"
          },
          "notification_level": {
            "type": "string"
          },
          "status_measurement": {
            "type": "string"
          },
          "nog_id": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "nusId": {
            "type": "string"
          },
          "read_all": {
            "type": "string"
          },
          "val_time": {
            "type": "string"
          },
          "before_time": {
            "type": "string"
          },
          "UuidNotification": {
            "type": "string"
          },
          "from_date": {
            "type": "string"
          },
          "to_date": {
            "type": "string"
          },
          "timezone_offset": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "NotificactionFilter"
      },
      "getUserNotificationsConsult": {
        "title": "getUserNotificationsConsult",
        "type": "object",
        "description": "(tsType: NotificactionFilter, schemaOptions: { title: 'getUserNotificationsConsult' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "commentDoctor": {
            "type": "string"
          },
          "measurement_type": {
            "type": "string"
          },
          "notification_status": {
            "type": "string"
          },
          "notification_level": {
            "type": "string"
          },
          "status_measurement": {
            "type": "string"
          },
          "nog_id": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "nusId": {
            "type": "string"
          },
          "read_all": {
            "type": "string"
          },
          "val_time": {
            "type": "string"
          },
          "before_time": {
            "type": "string"
          },
          "UuidNotification": {
            "type": "string"
          },
          "from_date": {
            "type": "string"
          },
          "to_date": {
            "type": "string"
          },
          "timezone_offset": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "NotificactionFilter"
      },
      "getUserEmergencyNotifications": {
        "title": "getUserEmergencyNotifications",
        "type": "object",
        "description": "(tsType: NotificactionFilter, schemaOptions: { title: 'getUserEmergencyNotifications' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "commentDoctor": {
            "type": "string"
          },
          "measurement_type": {
            "type": "string"
          },
          "notification_status": {
            "type": "string"
          },
          "notification_level": {
            "type": "string"
          },
          "status_measurement": {
            "type": "string"
          },
          "nog_id": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "nusId": {
            "type": "string"
          },
          "read_all": {
            "type": "string"
          },
          "val_time": {
            "type": "string"
          },
          "before_time": {
            "type": "string"
          },
          "UuidNotification": {
            "type": "string"
          },
          "from_date": {
            "type": "string"
          },
          "to_date": {
            "type": "string"
          },
          "timezone_offset": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "NotificactionFilter"
      },
      "getParameterState": {
        "title": "getParameterState",
        "type": "object",
        "description": "(tsType: UuidAndType, schemaOptions: { title: 'getParameterState' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "measurementType": {
            "type": "number"
          }
        },
        "required": [
          "uuid",
          "measurementType"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UuidAndType"
      },
      "UuidAndType": {
        "title": "UuidAndType",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "measurementType": {
            "type": "number"
          }
        },
        "required": [
          "uuid",
          "measurementType"
        ],
        "additionalProperties": false
      },
      "setParameterState": {
        "title": "setParameterState",
        "type": "object",
        "description": "(tsType: UuidAndType, schemaOptions: { title: 'setParameterState' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "measurementType": {
            "type": "number"
          }
        },
        "required": [
          "uuid",
          "measurementType"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UuidAndType"
      },
      "getUserParameters": {
        "title": "getUserParameters",
        "type": "object",
        "description": "(tsType: UuidAndParameter, schemaOptions: { title: 'getUserParameters' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "parameterType": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "parameterType"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UuidAndParameter"
      },
      "UuidAndParameter": {
        "title": "UuidAndParameter",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "parameterType": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "parameterType"
        ],
        "additionalProperties": false
      },
      "AlertParameter": {
        "title": "AlertParameter",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "criticalHigh": {
            "type": "string"
          },
          "normalMax": {
            "type": "string"
          },
          "normalMin": {
            "type": "string"
          },
          "criticalLow": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "criticalHigh",
          "normalMax",
          "normalMin",
          "criticalLow",
          "comment",
          "type"
        ],
        "additionalProperties": false
      },
      "updateUserParameters": {
        "title": "updateUserParameters",
        "type": "object",
        "description": "(tsType: AlertParameter, schemaOptions: { title: 'updateUserParameters' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "criticalHigh": {
            "type": "string"
          },
          "normalMax": {
            "type": "string"
          },
          "normalMin": {
            "type": "string"
          },
          "criticalLow": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "criticalHigh",
          "normalMax",
          "normalMin",
          "criticalLow",
          "comment",
          "type"
        ],
        "additionalProperties": false,
        "x-typescript-type": "AlertParameter"
      },
      "AlertParameter2": {
        "title": "AlertParameter2",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "criticalHigh1": {
            "type": "string"
          },
          "criticalLow1": {
            "type": "string"
          },
          "normalMax1": {
            "type": "string"
          },
          "normalMin1": {
            "type": "string"
          },
          "criticalHigh2": {
            "type": "string"
          },
          "criticalLow2": {
            "type": "string"
          },
          "normalMax2": {
            "type": "string"
          },
          "normalMin2": {
            "type": "string"
          },
          "criticalHigh3": {
            "type": "string"
          },
          "criticalLow3": {
            "type": "string"
          },
          "normalMax3": {
            "type": "string"
          },
          "normalMin3": {
            "type": "string"
          },
          "criticalHigh4": {
            "type": "string"
          },
          "criticalLow4": {
            "type": "string"
          },
          "normalMax4": {
            "type": "string"
          },
          "normalMin4": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "criticalHigh1",
          "criticalLow1",
          "normalMax1",
          "normalMin1",
          "comment",
          "type"
        ],
        "additionalProperties": false
      },
      "updateUserParameters2": {
        "title": "updateUserParameters2",
        "type": "object",
        "description": "(tsType: AlertParameter2, schemaOptions: { title: 'updateUserParameters2' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "criticalHigh1": {
            "type": "string"
          },
          "criticalLow1": {
            "type": "string"
          },
          "normalMax1": {
            "type": "string"
          },
          "normalMin1": {
            "type": "string"
          },
          "criticalHigh2": {
            "type": "string"
          },
          "criticalLow2": {
            "type": "string"
          },
          "normalMax2": {
            "type": "string"
          },
          "normalMin2": {
            "type": "string"
          },
          "criticalHigh3": {
            "type": "string"
          },
          "criticalLow3": {
            "type": "string"
          },
          "normalMax3": {
            "type": "string"
          },
          "normalMin3": {
            "type": "string"
          },
          "criticalHigh4": {
            "type": "string"
          },
          "criticalLow4": {
            "type": "string"
          },
          "normalMax4": {
            "type": "string"
          },
          "normalMin4": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "criticalHigh1",
          "criticalLow1",
          "normalMax1",
          "normalMin1",
          "comment",
          "type"
        ],
        "additionalProperties": false,
        "x-typescript-type": "AlertParameter2"
      },
      "updateUserParameters4": {
        "title": "updateUserParameters4",
        "type": "object",
        "description": "(tsType: AlertParameter2, schemaOptions: { title: 'updateUserParameters4' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "criticalHigh1": {
            "type": "string"
          },
          "criticalLow1": {
            "type": "string"
          },
          "normalMax1": {
            "type": "string"
          },
          "normalMin1": {
            "type": "string"
          },
          "criticalHigh2": {
            "type": "string"
          },
          "criticalLow2": {
            "type": "string"
          },
          "normalMax2": {
            "type": "string"
          },
          "normalMin2": {
            "type": "string"
          },
          "criticalHigh3": {
            "type": "string"
          },
          "criticalLow3": {
            "type": "string"
          },
          "normalMax3": {
            "type": "string"
          },
          "normalMin3": {
            "type": "string"
          },
          "criticalHigh4": {
            "type": "string"
          },
          "criticalLow4": {
            "type": "string"
          },
          "normalMax4": {
            "type": "string"
          },
          "normalMin4": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "criticalHigh1",
          "criticalLow1",
          "normalMax1",
          "normalMin1",
          "comment",
          "type"
        ],
        "additionalProperties": false,
        "x-typescript-type": "AlertParameter2"
      },
      "GetUserPathologiesSingle": {
        "title": "GetUserPathologiesSingle",
        "type": "object",
        "description": "(tsType: PathologyUser, schemaOptions: { title: 'GetUserPathologiesSingle' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "DiagnosticDate": {
            "type": "string"
          },
          "DischargeDate": {
            "type": "string"
          },
          "Comment": {
            "type": "string"
          },
          "pathology_type": {
            "type": "number"
          },
          "PathologyUserId": {
            "type": "number"
          },
          "StatusPathology": {
            "type": "string"
          },
          "reason_consultation": {
            "type": "string"
          },
          "ca": {
            "type": "string"
          },
          "cb": {
            "type": "string"
          },
          "cc": {
            "type": "string"
          },
          "volunteer": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "PathologyUser"
      },
      "PathologyUser": {
        "title": "PathologyUser",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "DiagnosticDate": {
            "type": "string"
          },
          "DischargeDate": {
            "type": "string"
          },
          "Comment": {
            "type": "string"
          },
          "pathology_type": {
            "type": "number"
          },
          "PathologyUserId": {
            "type": "number"
          },
          "StatusPathology": {
            "type": "string"
          },
          "reason_consultation": {
            "type": "string"
          },
          "ca": {
            "type": "string"
          },
          "cb": {
            "type": "string"
          },
          "cc": {
            "type": "string"
          },
          "volunteer": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false
      },
      "getUuidNotificationSingle": {
        "title": "getUuidNotificationSingle",
        "type": "object",
        "description": "(tsType: PathologyUser, schemaOptions: { title: 'getUuidNotificationSingle' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "DiagnosticDate": {
            "type": "string"
          },
          "DischargeDate": {
            "type": "string"
          },
          "Comment": {
            "type": "string"
          },
          "pathology_type": {
            "type": "number"
          },
          "PathologyUserId": {
            "type": "number"
          },
          "StatusPathology": {
            "type": "string"
          },
          "reason_consultation": {
            "type": "string"
          },
          "ca": {
            "type": "string"
          },
          "cb": {
            "type": "string"
          },
          "cc": {
            "type": "string"
          },
          "volunteer": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "PathologyUser"
      },
      "GetPathologies": {
        "title": "GetPathologies",
        "type": "object",
        "description": "(tsType: UserCategoryPathology, schemaOptions: { title: 'GetPathologies' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "category": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserCategoryPathology"
      },
      "UserCategoryPathology": {
        "title": "UserCategoryPathology",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "category": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false
      },
      "GetCategoriesPathology": {
        "title": "GetCategoriesPathology",
        "type": "object",
        "description": "(tsType: UserUuid, schemaOptions: { title: 'GetCategoriesPathology' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserUuid"
      },
      "DeleteUUidNotificationAgentUser": {
        "title": "DeleteUUidNotificationAgentUser",
        "type": "object",
        "description": "(tsType: PathologyUser, schemaOptions: { title: 'DeleteUUidNotificationAgentUser' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "DiagnosticDate": {
            "type": "string"
          },
          "DischargeDate": {
            "type": "string"
          },
          "Comment": {
            "type": "string"
          },
          "pathology_type": {
            "type": "number"
          },
          "PathologyUserId": {
            "type": "number"
          },
          "StatusPathology": {
            "type": "string"
          },
          "reason_consultation": {
            "type": "string"
          },
          "ca": {
            "type": "string"
          },
          "cb": {
            "type": "string"
          },
          "cc": {
            "type": "string"
          },
          "volunteer": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "PathologyUser"
      },
      "TreatmentUser": {
        "title": "TreatmentUser",
        "type": "object",
        "description": "(tsType: TreatmentUser, schemaOptions: { title: 'TreatmentUser' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "StartTreatmentDate": {
            "type": "string"
          },
          "EndTreatmentDate": {
            "type": "string"
          },
          "Dose": {
            "type": "string"
          },
          "Comment": {
            "type": "string"
          },
          "TreatmentDays": {
            "type": "string"
          },
          "TimesDay": {
            "type": "string"
          },
          "Medicine_type": {
            "type": "number"
          },
          "finished_doctor": {
            "type": "string"
          },
          "ActivePrinciple": {
            "type": "number"
          },
          "Concentration": {
            "type": "number"
          },
          "PharmaceuticalForm": {
            "type": "number"
          },
          "MedicineUserId": {
            "type": "number"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "TreatmentUser"
      },
      "GetUserMedicines": {
        "title": "GetUserMedicines",
        "type": "object",
        "description": "(tsType: UserUuid, schemaOptions: { title: 'GetUserMedicines' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserUuid"
      },
      "GetUserMedicinesSingle": {
        "title": "GetUserMedicinesSingle",
        "type": "object",
        "description": "(tsType: TreatmentUser, schemaOptions: { title: 'GetUserMedicinesSingle' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "StartTreatmentDate": {
            "type": "string"
          },
          "EndTreatmentDate": {
            "type": "string"
          },
          "Dose": {
            "type": "string"
          },
          "Comment": {
            "type": "string"
          },
          "TreatmentDays": {
            "type": "string"
          },
          "TimesDay": {
            "type": "string"
          },
          "Medicine_type": {
            "type": "number"
          },
          "finished_doctor": {
            "type": "string"
          },
          "ActivePrinciple": {
            "type": "number"
          },
          "Concentration": {
            "type": "number"
          },
          "PharmaceuticalForm": {
            "type": "number"
          },
          "MedicineUserId": {
            "type": "number"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "TreatmentUser"
      },
      "GetMedicines": {
        "title": "GetMedicines",
        "type": "object",
        "description": "(tsType: UserUuid, schemaOptions: { title: 'GetMedicines' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserUuid"
      },
      "MedicineUser": {
        "title": "MedicineUser",
        "type": "object",
        "description": "(tsType: TreatmentUser, schemaOptions: { title: 'MedicineUser' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "StartTreatmentDate": {
            "type": "string"
          },
          "EndTreatmentDate": {
            "type": "string"
          },
          "Dose": {
            "type": "string"
          },
          "Comment": {
            "type": "string"
          },
          "TreatmentDays": {
            "type": "string"
          },
          "TimesDay": {
            "type": "string"
          },
          "Medicine_type": {
            "type": "number"
          },
          "finished_doctor": {
            "type": "string"
          },
          "ActivePrinciple": {
            "type": "number"
          },
          "Concentration": {
            "type": "number"
          },
          "PharmaceuticalForm": {
            "type": "number"
          },
          "MedicineUserId": {
            "type": "number"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "TreatmentUser"
      },
      "UpdateTreatmentUser": {
        "title": "UpdateTreatmentUser",
        "type": "object",
        "description": "(tsType: TreatmentUser, schemaOptions: { title: 'UpdateTreatmentUser' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "StartTreatmentDate": {
            "type": "string"
          },
          "EndTreatmentDate": {
            "type": "string"
          },
          "Dose": {
            "type": "string"
          },
          "Comment": {
            "type": "string"
          },
          "TreatmentDays": {
            "type": "string"
          },
          "TimesDay": {
            "type": "string"
          },
          "Medicine_type": {
            "type": "number"
          },
          "finished_doctor": {
            "type": "string"
          },
          "ActivePrinciple": {
            "type": "number"
          },
          "Concentration": {
            "type": "number"
          },
          "PharmaceuticalForm": {
            "type": "number"
          },
          "MedicineUserId": {
            "type": "number"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "TreatmentUser"
      },
      "GetActivePrinciple": {
        "title": "GetActivePrinciple",
        "type": "object",
        "description": "(tsType: UserUuid, schemaOptions: { title: 'GetActivePrinciple' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserUuid"
      },
      "GetConcentration": {
        "title": "GetConcentration",
        "type": "object",
        "description": "(tsType: TreatmentDoctorUser, schemaOptions: { title: 'GetConcentration' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "activePrinciple": {
            "type": "string"
          },
          "concentration": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "TreatmentDoctorUser"
      },
      "TreatmentDoctorUser": {
        "title": "TreatmentDoctorUser",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "activePrinciple": {
            "type": "string"
          },
          "concentration": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "GetPharmaceuticalForm": {
        "title": "GetPharmaceuticalForm",
        "type": "object",
        "description": "(tsType: TreatmentDoctorUser, schemaOptions: { title: 'GetPharmaceuticalForm' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "activePrinciple": {
            "type": "string"
          },
          "concentration": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "TreatmentDoctorUser"
      },
      "NewUsers": {
        "title": "NewUsers",
        "type": "object",
        "description": "(tsType: NewUser, schemaOptions: { title: 'NewUsers' })",
        "properties": {
          "email": {
            "type": "string"
          },
          "user_name": {
            "type": "string"
          },
          "password": {
            "type": "string"
          },
          "reference_id": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "last_name": {
            "type": "string"
          },
          "birth_date": {
            "type": "string"
          },
          "phone": {
            "type": "string"
          },
          "gender_id": {
            "type": "number"
          },
          "address": {
            "type": "string"
          },
          "birth_address": {
            "type": "string"
          }
        },
        "required": [
          "email",
          "user_name",
          "password",
          "reference_id",
          "name",
          "last_name",
          "birth_date",
          "phone",
          "gender_id",
          "address",
          "birth_address"
        ],
        "additionalProperties": false,
        "x-typescript-type": "NewUser"
      },
      "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
      },
      "UpdateUser": {
        "title": "UpdateUser",
        "type": "object",
        "description": "(tsType: UpdateUser, schemaOptions: { title: 'UpdateUser' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "permission": {
            "type": "number"
          },
          "email": {
            "type": "string"
          },
          "user_name": {
            "type": "string"
          },
          "type_user_id": {
            "type": "number"
          },
          "password": {
            "type": "string"
          },
          "reference_id": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "last_name": {
            "type": "string"
          },
          "birth_date": {
            "type": "string"
          },
          "phone": {
            "type": "string"
          },
          "emergency_phone": {
            "type": "string"
          },
          "birth_address": {
            "type": "string"
          },
          "address": {
            "type": "string"
          },
          "height": {
            "type": "number"
          },
          "Weight": {
            "type": "number"
          },
          "gender_id": {
            "type": "number"
          },
          "photo": {
            "type": "string"
          },
          "blood_type": {
            "type": "number"
          },
          "about_user": {
            "type": "string"
          },
          "unit_temperature_id": {
            "type": "number"
          },
          "unit_weight_id": {
            "type": "number"
          },
          "unit_height_id": {
            "type": "number"
          },
          "emergencyName": {
            "type": "string"
          },
          "emergencyCellphone": {
            "type": "string"
          },
          "emergencyRelationship": {
            "type": "string"
          },
          "user_classification": {
            "type": "number"
          },
          "user_condition": {
            "type": "number"
          },
          "user_holder_name": {
            "type": "string"
          },
          "user_holder_relationship": {
            "type": "number"
          },
          "cnmaeusua": {
            "type": "string"
          },
          "user_classification_patient": {
            "type": "number"
          },
          "CRM": {
            "type": "string"
          },
          "user_classification_doctor": {
            "type": "number"
          },
          "uuid_clinic": {
            "type": "string"
          },
          "apt": {
            "type": "number"
          },
          "type_apt": {
            "type": "string"
          },
          "ltcs_primary_secondary": {
            "type": "boolean"
          },
          "pcc_id": {
            "type": "number"
          },
          "PCCaccessToken": {
            "type": "string"
          },
          "PCCrefreshToken": {
            "type": "string"
          },
          "PCCtokenExpiry": {
            "type": "string",
            "format": "date-time"
          },
          "PCCrefreshTokenExpiry": {
            "type": "string",
            "format": "date-time"
          },
          "PCCdefaultFacId": {
            "type": "number"
          },
          "PCCinitials": {
            "type": "string"
          },
          "PCCorgUuid": {
            "type": "string"
          },
          "PCCprivilegeScopes": {
            "type": "string"
          },
          "PCCstatus": {
            "type": "number"
          },
          "PCCupdateDate": {
            "type": "string",
            "format": "date-time"
          },
          "PCCroomDesc": {
            "type": "string"
          },
          "PCCroomType": {
            "type": "string"
          },
          "fhir_id": {
            "type": "string"
          },
          "epic_mrn": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "permission",
          "email",
          "user_name",
          "type_user_id",
          "password",
          "reference_id",
          "name",
          "last_name",
          "birth_date",
          "phone",
          "emergency_phone",
          "birth_address",
          "address",
          "height",
          "Weight",
          "gender_id",
          "photo",
          "blood_type",
          "about_user",
          "unit_temperature_id",
          "unit_weight_id",
          "unit_height_id",
          "emergencyName",
          "emergencyCellphone",
          "emergencyRelationship"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UpdateUser"
      },
      "getUserStatisticsDoctor": {
        "title": "getUserStatisticsDoctor",
        "type": "object",
        "description": "(tsType: UserUuid, schemaOptions: { title: 'getUserStatisticsDoctor' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserUuid"
      },
      "getCampaigns": {
        "title": "getCampaigns",
        "type": "object",
        "description": "(tsType: UuidAndCampaignStatus, schemaOptions: { title: 'getCampaigns' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "campaignStatus": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "campaignStatus"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UuidAndCampaignStatus"
      },
      "UuidAndCampaignStatus": {
        "title": "UuidAndCampaignStatus",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "campaignStatus": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "campaignStatus"
        ],
        "additionalProperties": false
      },
      "CreateClient": {
        "title": "CreateClient",
        "type": "object",
        "description": "(tsType: CreatePatient, schemaOptions: { title: 'CreateClient' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "permission": {
            "type": "number"
          },
          "email": {
            "type": "string"
          },
          "user_name": {
            "type": "string"
          },
          "type_user_id": {
            "type": "number"
          },
          "password": {
            "type": "string"
          },
          "uuid_clinic": {
            "type": "string"
          },
          "reference_id": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "last_name": {
            "type": "string"
          },
          "birth_date": {
            "type": "string"
          },
          "phone": {
            "type": "string"
          },
          "emergency_phone": {
            "type": "string"
          },
          "birth_address": {
            "type": "string"
          },
          "address": {
            "type": "string"
          },
          "height": {
            "type": "number"
          },
          "Weight": {
            "type": "number"
          },
          "gender_id": {
            "type": "number"
          },
          "photo": {
            "type": "string"
          },
          "about_user": {
            "type": "string"
          },
          "unit_temperature_id": {
            "type": "number"
          },
          "unit_weight_id": {
            "type": "number"
          },
          "unit_height_id": {
            "type": "number"
          },
          "LicensePricing": {
            "type": "string"
          },
          "ReName": {
            "type": "string"
          },
          "RePhoneNumber": {
            "type": "string"
          },
          "ReMail": {
            "type": "string"
          },
          "campaignUuid": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "permission",
          "email",
          "user_name",
          "type_user_id",
          "password",
          "uuid_clinic",
          "reference_id",
          "name",
          "last_name",
          "birth_date",
          "phone",
          "emergency_phone",
          "birth_address",
          "address",
          "height",
          "Weight",
          "gender_id",
          "photo",
          "about_user",
          "unit_temperature_id",
          "unit_weight_id",
          "unit_height_id",
          "LicensePricing",
          "ReName",
          "RePhoneNumber",
          "ReMail",
          "campaignUuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CreatePatient"
      },
      "CreatePatient": {
        "title": "CreatePatient",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "permission": {
            "type": "number"
          },
          "email": {
            "type": "string"
          },
          "user_name": {
            "type": "string"
          },
          "type_user_id": {
            "type": "number"
          },
          "password": {
            "type": "string"
          },
          "uuid_clinic": {
            "type": "string"
          },
          "reference_id": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "last_name": {
            "type": "string"
          },
          "birth_date": {
            "type": "string"
          },
          "phone": {
            "type": "string"
          },
          "emergency_phone": {
            "type": "string"
          },
          "birth_address": {
            "type": "string"
          },
          "address": {
            "type": "string"
          },
          "height": {
            "type": "number"
          },
          "Weight": {
            "type": "number"
          },
          "gender_id": {
            "type": "number"
          },
          "photo": {
            "type": "string"
          },
          "about_user": {
            "type": "string"
          },
          "unit_temperature_id": {
            "type": "number"
          },
          "unit_weight_id": {
            "type": "number"
          },
          "unit_height_id": {
            "type": "number"
          },
          "LicensePricing": {
            "type": "string"
          },
          "ReName": {
            "type": "string"
          },
          "RePhoneNumber": {
            "type": "string"
          },
          "ReMail": {
            "type": "string"
          },
          "campaignUuid": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "permission",
          "email",
          "user_name",
          "type_user_id",
          "password",
          "uuid_clinic",
          "reference_id",
          "name",
          "last_name",
          "birth_date",
          "phone",
          "emergency_phone",
          "birth_address",
          "address",
          "height",
          "Weight",
          "gender_id",
          "photo",
          "about_user",
          "unit_temperature_id",
          "unit_weight_id",
          "unit_height_id",
          "LicensePricing",
          "ReName",
          "RePhoneNumber",
          "ReMail",
          "campaignUuid"
        ],
        "additionalProperties": false
      },
      "getUserMedicalHistory": {
        "title": "getUserMedicalHistory",
        "type": "object",
        "description": "(tsType: UserUuid, schemaOptions: { title: 'getUserMedicalHistory' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserUuid"
      },
      "getUserInternalHistory": {
        "title": "getUserInternalHistory",
        "type": "object",
        "description": "(tsType: UserUuid, schemaOptions: { title: 'getUserInternalHistory' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserUuid"
      },
      "getUserGinecologyHistory": {
        "title": "getUserGinecologyHistory",
        "type": "object",
        "description": "(tsType: UserUuid, schemaOptions: { title: 'getUserGinecologyHistory' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserUuid"
      },
      "getUserPediatricsHistory": {
        "title": "getUserPediatricsHistory",
        "type": "object",
        "description": "(tsType: UserUuid, schemaOptions: { title: 'getUserPediatricsHistory' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserUuid"
      },
      "getUserOphtalmologyHistory": {
        "title": "getUserOphtalmologyHistory",
        "type": "object",
        "description": "(tsType: UserUuid, schemaOptions: { title: 'getUserOphtalmologyHistory' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserUuid"
      },
      "getUserCardiologyHistory": {
        "title": "getUserCardiologyHistory",
        "type": "object",
        "description": "(tsType: UserUuid, schemaOptions: { title: 'getUserCardiologyHistory' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserUuid"
      },
      "getUserSurgeryHistory": {
        "title": "getUserSurgeryHistory",
        "type": "object",
        "description": "(tsType: UserUuid, schemaOptions: { title: 'getUserSurgeryHistory' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserUuid"
      },
      "getUserOtorhinolaryngologyHistory": {
        "title": "getUserOtorhinolaryngologyHistory",
        "type": "object",
        "description": "(tsType: UserUuid, schemaOptions: { title: 'getUserOtorhinolaryngologyHistory' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserUuid"
      },
      "getUserPsychiatryHistory": {
        "title": "getUserPsychiatryHistory",
        "type": "object",
        "description": "(tsType: UserUuid, schemaOptions: { title: 'getUserPsychiatryHistory' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserUuid"
      },
      "getUserGastroenterologyHistory": {
        "title": "getUserGastroenterologyHistory",
        "type": "object",
        "description": "(tsType: UserUuid, schemaOptions: { title: 'getUserGastroenterologyHistory' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserUuid"
      },
      "getUserDermatologyHistory": {
        "title": "getUserDermatologyHistory",
        "type": "object",
        "description": "(tsType: UserUuid, schemaOptions: { title: 'getUserDermatologyHistory' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserUuid"
      },
      "getUserHistoryComments": {
        "title": "getUserHistoryComments",
        "type": "object",
        "description": "(tsType: UuidAndSpeciality, schemaOptions: { title: 'getUserHistoryComments' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "speciality": {
            "type": "number"
          }
        },
        "required": [
          "uuid",
          "speciality"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UuidAndSpeciality"
      },
      "UuidAndSpeciality": {
        "title": "UuidAndSpeciality",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "speciality": {
            "type": "number"
          }
        },
        "required": [
          "uuid",
          "speciality"
        ],
        "additionalProperties": false
      },
      "NewComment": {
        "title": "NewComment",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "speciality": {
            "type": "number"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "comment",
          "speciality"
        ],
        "additionalProperties": false
      },
      "createUserHistoryComment": {
        "title": "createUserHistoryComment",
        "type": "object",
        "description": "(tsType: NewComment, schemaOptions: { title: 'createUserHistoryComment' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "speciality": {
            "type": "number"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "comment",
          "speciality"
        ],
        "additionalProperties": false,
        "x-typescript-type": "NewComment"
      },
      "MedicalHistory": {
        "title": "MedicalHistory",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "hypertension": {
            "type": "boolean"
          },
          "diabetes": {
            "type": "boolean"
          },
          "asma": {
            "type": "boolean"
          },
          "thrombosis": {
            "type": "boolean"
          },
          "stroke": {
            "type": "boolean"
          },
          "migraine": {
            "type": "boolean"
          },
          "obesity": {
            "type": "boolean"
          },
          "arrhytmia": {
            "type": "boolean"
          },
          "cancer": {
            "type": "boolean"
          },
          "hypothyroidism": {
            "type": "boolean"
          },
          "epilepsy": {
            "type": "boolean"
          },
          "cirrhosis": {
            "type": "boolean"
          },
          "others": {
            "type": "boolean"
          },
          "others_description": {
            "type": "string"
          },
          "smoke": {
            "type": "boolean"
          },
          "cigarretes": {
            "type": "number"
          },
          "years_smoking": {
            "type": "number"
          },
          "drink": {
            "type": "boolean"
          },
          "drink_frequency_id": {
            "type": "number"
          },
          "surgery": {
            "type": "boolean"
          },
          "which_surgery": {
            "type": "string"
          },
          "when_surgery": {
            "type": "string"
          },
          "medicine_allergy": {
            "type": "boolean"
          },
          "which_medicine": {
            "type": "string"
          },
          "vaccination_schedule": {
            "type": "boolean"
          },
          "missing_vaccines": {
            "type": "string"
          },
          "exercise": {
            "type": "boolean"
          },
          "exercise_type": {
            "type": "string"
          },
          "exercise_frequency_id": {
            "type": "number"
          },
          "mother_history": {
            "type": "string"
          },
          "father_history": {
            "type": "string"
          },
          "hepatitis": {
            "type": "boolean"
          },
          "chickenpox": {
            "type": "boolean"
          },
          "measles": {
            "type": "boolean"
          },
          "health_plan": {
            "type": "boolean"
          },
          "policy_number": {
            "type": "string"
          },
          "validity_date": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "hypertension",
          "diabetes",
          "asma",
          "thrombosis",
          "stroke",
          "migraine",
          "obesity",
          "arrhytmia",
          "cancer",
          "hypothyroidism",
          "epilepsy",
          "cirrhosis",
          "others",
          "others_description",
          "smoke",
          "cigarretes",
          "years_smoking",
          "drink",
          "drink_frequency_id",
          "surgery",
          "which_surgery",
          "when_surgery",
          "medicine_allergy",
          "which_medicine",
          "vaccination_schedule",
          "missing_vaccines",
          "exercise",
          "exercise_type",
          "exercise_frequency_id",
          "mother_history",
          "father_history",
          "hepatitis",
          "chickenpox",
          "measles",
          "health_plan",
          "policy_number",
          "validity_date"
        ],
        "additionalProperties": false
      },
      "updateMedicalHistory": {
        "title": "updateMedicalHistory",
        "type": "object",
        "description": "(tsType: MedicalHistory, schemaOptions: { title: 'updateMedicalHistory' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "hypertension": {
            "type": "boolean"
          },
          "diabetes": {
            "type": "boolean"
          },
          "asma": {
            "type": "boolean"
          },
          "thrombosis": {
            "type": "boolean"
          },
          "stroke": {
            "type": "boolean"
          },
          "migraine": {
            "type": "boolean"
          },
          "obesity": {
            "type": "boolean"
          },
          "arrhytmia": {
            "type": "boolean"
          },
          "cancer": {
            "type": "boolean"
          },
          "hypothyroidism": {
            "type": "boolean"
          },
          "epilepsy": {
            "type": "boolean"
          },
          "cirrhosis": {
            "type": "boolean"
          },
          "others": {
            "type": "boolean"
          },
          "others_description": {
            "type": "string"
          },
          "smoke": {
            "type": "boolean"
          },
          "cigarretes": {
            "type": "number"
          },
          "years_smoking": {
            "type": "number"
          },
          "drink": {
            "type": "boolean"
          },
          "drink_frequency_id": {
            "type": "number"
          },
          "surgery": {
            "type": "boolean"
          },
          "which_surgery": {
            "type": "string"
          },
          "when_surgery": {
            "type": "string"
          },
          "medicine_allergy": {
            "type": "boolean"
          },
          "which_medicine": {
            "type": "string"
          },
          "vaccination_schedule": {
            "type": "boolean"
          },
          "missing_vaccines": {
            "type": "string"
          },
          "exercise": {
            "type": "boolean"
          },
          "exercise_type": {
            "type": "string"
          },
          "exercise_frequency_id": {
            "type": "number"
          },
          "mother_history": {
            "type": "string"
          },
          "father_history": {
            "type": "string"
          },
          "hepatitis": {
            "type": "boolean"
          },
          "chickenpox": {
            "type": "boolean"
          },
          "measles": {
            "type": "boolean"
          },
          "health_plan": {
            "type": "boolean"
          },
          "policy_number": {
            "type": "string"
          },
          "validity_date": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "hypertension",
          "diabetes",
          "asma",
          "thrombosis",
          "stroke",
          "migraine",
          "obesity",
          "arrhytmia",
          "cancer",
          "hypothyroidism",
          "epilepsy",
          "cirrhosis",
          "others",
          "others_description",
          "smoke",
          "cigarretes",
          "years_smoking",
          "drink",
          "drink_frequency_id",
          "surgery",
          "which_surgery",
          "when_surgery",
          "medicine_allergy",
          "which_medicine",
          "vaccination_schedule",
          "missing_vaccines",
          "exercise",
          "exercise_type",
          "exercise_frequency_id",
          "mother_history",
          "father_history",
          "hepatitis",
          "chickenpox",
          "measles",
          "health_plan",
          "policy_number",
          "validity_date"
        ],
        "additionalProperties": false,
        "x-typescript-type": "MedicalHistory"
      },
      "GeneralHistory": {
        "title": "GeneralHistory",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "smoke": {
            "type": "boolean"
          },
          "cigarretes": {
            "type": "string"
          },
          "years_smoking": {
            "type": "string"
          },
          "alcoholic": {
            "type": "boolean"
          },
          "drink_frequency_id": {
            "type": "number"
          },
          "fracture": {
            "type": "boolean"
          },
          "which_surgery": {
            "type": "string"
          },
          "when_surgery": {
            "type": "string"
          },
          "allergic": {
            "type": "boolean"
          },
          "allergy_medicine": {
            "type": "string"
          },
          "vaccine_schedule": {
            "type": "boolean"
          },
          "missing_vaccines": {
            "type": "string"
          },
          "physical_activity": {
            "type": "boolean"
          },
          "exercise_type": {
            "type": "string"
          },
          "exercise_frequency_id": {
            "type": "string"
          },
          "family_history_mother": {
            "type": "string"
          },
          "family_history_father": {
            "type": "string"
          },
          "medicine_use": {
            "type": "boolean"
          },
          "which_medicine_use": {
            "type": "string"
          },
          "health_plan_insurance": {
            "type": "boolean"
          },
          "whichHealthPlan": {
            "type": "string"
          },
          "policyNumber": {
            "type": "string"
          },
          "validityDate": {
            "type": "string"
          },
          "vaccinated_hepatitis": {
            "type": "boolean"
          },
          "immune_to_chickenpox": {
            "type": "boolean"
          },
          "immune_to_measles": {
            "type": "boolean"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "smoke",
          "cigarretes",
          "years_smoking",
          "alcoholic",
          "drink_frequency_id",
          "fracture",
          "which_surgery",
          "when_surgery",
          "allergic",
          "allergy_medicine",
          "vaccine_schedule",
          "missing_vaccines",
          "physical_activity",
          "exercise_type",
          "exercise_frequency_id",
          "family_history_mother",
          "family_history_father",
          "medicine_use",
          "which_medicine_use",
          "health_plan_insurance",
          "whichHealthPlan",
          "policyNumber",
          "validityDate",
          "vaccinated_hepatitis",
          "immune_to_chickenpox",
          "immune_to_measles"
        ],
        "additionalProperties": false
      },
      "updateGeneralHistory": {
        "title": "updateGeneralHistory",
        "type": "object",
        "description": "(tsType: GeneralHistory, schemaOptions: { title: 'updateGeneralHistory' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "smoke": {
            "type": "boolean"
          },
          "cigarretes": {
            "type": "string"
          },
          "years_smoking": {
            "type": "string"
          },
          "alcoholic": {
            "type": "boolean"
          },
          "drink_frequency_id": {
            "type": "number"
          },
          "fracture": {
            "type": "boolean"
          },
          "which_surgery": {
            "type": "string"
          },
          "when_surgery": {
            "type": "string"
          },
          "allergic": {
            "type": "boolean"
          },
          "allergy_medicine": {
            "type": "string"
          },
          "vaccine_schedule": {
            "type": "boolean"
          },
          "missing_vaccines": {
            "type": "string"
          },
          "physical_activity": {
            "type": "boolean"
          },
          "exercise_type": {
            "type": "string"
          },
          "exercise_frequency_id": {
            "type": "string"
          },
          "family_history_mother": {
            "type": "string"
          },
          "family_history_father": {
            "type": "string"
          },
          "medicine_use": {
            "type": "boolean"
          },
          "which_medicine_use": {
            "type": "string"
          },
          "health_plan_insurance": {
            "type": "boolean"
          },
          "whichHealthPlan": {
            "type": "string"
          },
          "policyNumber": {
            "type": "string"
          },
          "validityDate": {
            "type": "string"
          },
          "vaccinated_hepatitis": {
            "type": "boolean"
          },
          "immune_to_chickenpox": {
            "type": "boolean"
          },
          "immune_to_measles": {
            "type": "boolean"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "smoke",
          "cigarretes",
          "years_smoking",
          "alcoholic",
          "drink_frequency_id",
          "fracture",
          "which_surgery",
          "when_surgery",
          "allergic",
          "allergy_medicine",
          "vaccine_schedule",
          "missing_vaccines",
          "physical_activity",
          "exercise_type",
          "exercise_frequency_id",
          "family_history_mother",
          "family_history_father",
          "medicine_use",
          "which_medicine_use",
          "health_plan_insurance",
          "whichHealthPlan",
          "policyNumber",
          "validityDate",
          "vaccinated_hepatitis",
          "immune_to_chickenpox",
          "immune_to_measles"
        ],
        "additionalProperties": false,
        "x-typescript-type": "GeneralHistory"
      },
      "GinecologyHistory": {
        "title": "GinecologyHistory",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "surgery": {
            "type": "boolean"
          },
          "surgeryDescription": {
            "type": "string"
          },
          "healthIssues": {
            "type": "boolean"
          },
          "healthIssuesDescription": {
            "type": "string"
          },
          "sexuallyActive": {
            "type": "boolean"
          },
          "inconvenience": {
            "type": "boolean"
          },
          "bleeding": {
            "type": "boolean"
          },
          "partner": {
            "type": "boolean"
          },
          "partnerType": {
            "type": "number"
          },
          "hadETS": {
            "type": "boolean"
          },
          "hadETSDescription": {
            "type": "string"
          },
          "allergic": {
            "type": "boolean"
          },
          "allergy_medicine": {
            "type": "string"
          },
          "medicine_use": {
            "type": "boolean"
          },
          "which_medicine_use": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "surgery",
          "surgeryDescription",
          "healthIssues",
          "healthIssuesDescription",
          "sexuallyActive",
          "inconvenience",
          "bleeding",
          "partner",
          "partnerType",
          "hadETS",
          "hadETSDescription",
          "allergic",
          "allergy_medicine",
          "medicine_use",
          "which_medicine_use"
        ],
        "additionalProperties": false
      },
      "updateGinecologyHistory": {
        "title": "updateGinecologyHistory",
        "type": "object",
        "description": "(tsType: GinecologyHistory, schemaOptions: { title: 'updateGinecologyHistory' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "surgery": {
            "type": "boolean"
          },
          "surgeryDescription": {
            "type": "string"
          },
          "healthIssues": {
            "type": "boolean"
          },
          "healthIssuesDescription": {
            "type": "string"
          },
          "sexuallyActive": {
            "type": "boolean"
          },
          "inconvenience": {
            "type": "boolean"
          },
          "bleeding": {
            "type": "boolean"
          },
          "partner": {
            "type": "boolean"
          },
          "partnerType": {
            "type": "number"
          },
          "hadETS": {
            "type": "boolean"
          },
          "hadETSDescription": {
            "type": "string"
          },
          "allergic": {
            "type": "boolean"
          },
          "allergy_medicine": {
            "type": "string"
          },
          "medicine_use": {
            "type": "boolean"
          },
          "which_medicine_use": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "surgery",
          "surgeryDescription",
          "healthIssues",
          "healthIssuesDescription",
          "sexuallyActive",
          "inconvenience",
          "bleeding",
          "partner",
          "partnerType",
          "hadETS",
          "hadETSDescription",
          "allergic",
          "allergy_medicine",
          "medicine_use",
          "which_medicine_use"
        ],
        "additionalProperties": false,
        "x-typescript-type": "GinecologyHistory"
      },
      "PediatricsHistory": {
        "title": "PediatricsHistory",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "immune_to_chickenpox": {
            "type": "boolean"
          },
          "vaccinated_hepatitis": {
            "type": "boolean"
          },
          "immune_to_measles": {
            "type": "boolean"
          },
          "relevantIssues": {
            "type": "boolean"
          },
          "hospitalized": {
            "type": "boolean"
          },
          "hereditary": {
            "type": "boolean"
          },
          "hereditarySel": {
            "type": "string"
          },
          "alergyAutoinmune": {
            "type": "boolean"
          },
          "mentalIssues": {
            "type": "boolean"
          },
          "growthlIssues": {
            "type": "boolean"
          },
          "vacBCG": {
            "type": "boolean"
          },
          "hepatitisA": {
            "type": "boolean"
          },
          "pentavalent": {
            "type": "boolean"
          },
          "poliomyelitis": {
            "type": "boolean"
          },
          "rotavirus": {
            "type": "boolean"
          },
          "pneumococcus": {
            "type": "boolean"
          },
          "meningococcus": {
            "type": "boolean"
          },
          "diet": {
            "type": "number"
          },
          "feedingIssues": {
            "type": "boolean"
          },
          "nutritionIssues": {
            "type": "boolean"
          },
          "allergic": {
            "type": "boolean"
          },
          "allergy_medicine": {
            "type": "string"
          },
          "medicine_use": {
            "type": "boolean"
          },
          "which_medicine_use": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "immune_to_chickenpox",
          "vaccinated_hepatitis",
          "immune_to_measles",
          "relevantIssues",
          "hospitalized",
          "hereditary",
          "hereditarySel",
          "alergyAutoinmune",
          "mentalIssues",
          "growthlIssues",
          "vacBCG",
          "hepatitisA",
          "pentavalent",
          "poliomyelitis",
          "rotavirus",
          "pneumococcus",
          "meningococcus",
          "diet",
          "feedingIssues",
          "nutritionIssues",
          "allergic",
          "allergy_medicine",
          "medicine_use",
          "which_medicine_use"
        ],
        "additionalProperties": false
      },
      "updatePediatricsHistory": {
        "title": "updatePediatricsHistory",
        "type": "object",
        "description": "(tsType: PediatricsHistory, schemaOptions: { title: 'updatePediatricsHistory' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "immune_to_chickenpox": {
            "type": "boolean"
          },
          "vaccinated_hepatitis": {
            "type": "boolean"
          },
          "immune_to_measles": {
            "type": "boolean"
          },
          "relevantIssues": {
            "type": "boolean"
          },
          "hospitalized": {
            "type": "boolean"
          },
          "hereditary": {
            "type": "boolean"
          },
          "hereditarySel": {
            "type": "string"
          },
          "alergyAutoinmune": {
            "type": "boolean"
          },
          "mentalIssues": {
            "type": "boolean"
          },
          "growthlIssues": {
            "type": "boolean"
          },
          "vacBCG": {
            "type": "boolean"
          },
          "hepatitisA": {
            "type": "boolean"
          },
          "pentavalent": {
            "type": "boolean"
          },
          "poliomyelitis": {
            "type": "boolean"
          },
          "rotavirus": {
            "type": "boolean"
          },
          "pneumococcus": {
            "type": "boolean"
          },
          "meningococcus": {
            "type": "boolean"
          },
          "diet": {
            "type": "number"
          },
          "feedingIssues": {
            "type": "boolean"
          },
          "nutritionIssues": {
            "type": "boolean"
          },
          "allergic": {
            "type": "boolean"
          },
          "allergy_medicine": {
            "type": "string"
          },
          "medicine_use": {
            "type": "boolean"
          },
          "which_medicine_use": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "immune_to_chickenpox",
          "vaccinated_hepatitis",
          "immune_to_measles",
          "relevantIssues",
          "hospitalized",
          "hereditary",
          "hereditarySel",
          "alergyAutoinmune",
          "mentalIssues",
          "growthlIssues",
          "vacBCG",
          "hepatitisA",
          "pentavalent",
          "poliomyelitis",
          "rotavirus",
          "pneumococcus",
          "meningococcus",
          "diet",
          "feedingIssues",
          "nutritionIssues",
          "allergic",
          "allergy_medicine",
          "medicine_use",
          "which_medicine_use"
        ],
        "additionalProperties": false,
        "x-typescript-type": "PediatricsHistory"
      },
      "OphtalmologyHistory": {
        "title": "OphtalmologyHistory",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "relevantIssues": {
            "type": "boolean"
          },
          "hospitalized": {
            "type": "boolean"
          },
          "parentSightDisease": {
            "type": "boolean"
          },
          "sightIssue": {
            "type": "boolean"
          },
          "sightIssueDescription": {
            "type": "string"
          },
          "sightDisease": {
            "type": "boolean"
          },
          "sightSurgery": {
            "type": "boolean"
          },
          "glasses": {
            "type": "boolean"
          },
          "allergic": {
            "type": "boolean"
          },
          "allergy_medicine": {
            "type": "string"
          },
          "medicine_use": {
            "type": "boolean"
          },
          "which_medicine_use": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "relevantIssues",
          "hospitalized",
          "parentSightDisease",
          "sightIssue",
          "sightIssueDescription",
          "sightDisease",
          "sightSurgery",
          "glasses",
          "allergic",
          "allergy_medicine",
          "medicine_use",
          "which_medicine_use"
        ],
        "additionalProperties": false
      },
      "updateOphtalmologyHistory": {
        "title": "updateOphtalmologyHistory",
        "type": "object",
        "description": "(tsType: OphtalmologyHistory, schemaOptions: { title: 'updateOphtalmologyHistory' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "relevantIssues": {
            "type": "boolean"
          },
          "hospitalized": {
            "type": "boolean"
          },
          "parentSightDisease": {
            "type": "boolean"
          },
          "sightIssue": {
            "type": "boolean"
          },
          "sightIssueDescription": {
            "type": "string"
          },
          "sightDisease": {
            "type": "boolean"
          },
          "sightSurgery": {
            "type": "boolean"
          },
          "glasses": {
            "type": "boolean"
          },
          "allergic": {
            "type": "boolean"
          },
          "allergy_medicine": {
            "type": "string"
          },
          "medicine_use": {
            "type": "boolean"
          },
          "which_medicine_use": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "relevantIssues",
          "hospitalized",
          "parentSightDisease",
          "sightIssue",
          "sightIssueDescription",
          "sightDisease",
          "sightSurgery",
          "glasses",
          "allergic",
          "allergy_medicine",
          "medicine_use",
          "which_medicine_use"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OphtalmologyHistory"
      },
      "CardiologyHistory": {
        "title": "CardiologyHistory",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "relevantIssues": {
            "type": "boolean"
          },
          "hospitalized": {
            "type": "boolean"
          },
          "heartSurgery": {
            "type": "boolean"
          },
          "smoker": {
            "type": "boolean"
          },
          "overweight": {
            "type": "boolean"
          },
          "hipertense": {
            "type": "boolean"
          },
          "colesterol": {
            "type": "boolean"
          },
          "diabetes": {
            "type": "boolean"
          },
          "physicalActivity": {
            "type": "boolean"
          },
          "emotionalAnxiety": {
            "type": "boolean"
          },
          "parentCardiologicProblem": {
            "type": "boolean"
          },
          "allergic": {
            "type": "boolean"
          },
          "allergy_medicine": {
            "type": "string"
          },
          "medicine_use": {
            "type": "boolean"
          },
          "which_medicine_use": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "relevantIssues",
          "hospitalized",
          "heartSurgery",
          "smoker",
          "overweight",
          "hipertense",
          "colesterol",
          "diabetes",
          "physicalActivity",
          "emotionalAnxiety",
          "parentCardiologicProblem",
          "allergic",
          "allergy_medicine",
          "medicine_use",
          "which_medicine_use"
        ],
        "additionalProperties": false
      },
      "updateCardiologyHistory": {
        "title": "updateCardiologyHistory",
        "type": "object",
        "description": "(tsType: CardiologyHistory, schemaOptions: { title: 'updateCardiologyHistory' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "relevantIssues": {
            "type": "boolean"
          },
          "hospitalized": {
            "type": "boolean"
          },
          "heartSurgery": {
            "type": "boolean"
          },
          "smoker": {
            "type": "boolean"
          },
          "overweight": {
            "type": "boolean"
          },
          "hipertense": {
            "type": "boolean"
          },
          "colesterol": {
            "type": "boolean"
          },
          "diabetes": {
            "type": "boolean"
          },
          "physicalActivity": {
            "type": "boolean"
          },
          "emotionalAnxiety": {
            "type": "boolean"
          },
          "parentCardiologicProblem": {
            "type": "boolean"
          },
          "allergic": {
            "type": "boolean"
          },
          "allergy_medicine": {
            "type": "string"
          },
          "medicine_use": {
            "type": "boolean"
          },
          "which_medicine_use": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "relevantIssues",
          "hospitalized",
          "heartSurgery",
          "smoker",
          "overweight",
          "hipertense",
          "colesterol",
          "diabetes",
          "physicalActivity",
          "emotionalAnxiety",
          "parentCardiologicProblem",
          "allergic",
          "allergy_medicine",
          "medicine_use",
          "which_medicine_use"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CardiologyHistory"
      },
      "SurgeryHistory": {
        "title": "SurgeryHistory",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "relevantIssues": {
            "type": "boolean"
          },
          "hospitalized": {
            "type": "boolean"
          },
          "parentSurgery": {
            "type": "boolean"
          },
          "hernia": {
            "type": "boolean"
          },
          "apendicitis": {
            "type": "boolean"
          },
          "gallstones": {
            "type": "boolean"
          },
          "hipFracture": {
            "type": "boolean"
          },
          "colorectalCancer": {
            "type": "boolean"
          },
          "intestinalObstruction": {
            "type": "boolean"
          },
          "pepticUlcer": {
            "type": "boolean"
          },
          "traumaticLession": {
            "type": "boolean"
          },
          "burnGraves": {
            "type": "boolean"
          },
          "anomalies": {
            "type": "boolean"
          },
          "surgeryIssues": {
            "type": "boolean"
          },
          "surgeryIssuesDescription": {
            "type": "string"
          },
          "allergic": {
            "type": "boolean"
          },
          "allergy_medicine": {
            "type": "string"
          },
          "medicine_use": {
            "type": "boolean"
          },
          "which_medicine_use": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "relevantIssues",
          "hospitalized",
          "parentSurgery",
          "hernia",
          "apendicitis",
          "gallstones",
          "hipFracture",
          "colorectalCancer",
          "intestinalObstruction",
          "pepticUlcer",
          "traumaticLession",
          "burnGraves",
          "anomalies",
          "surgeryIssues",
          "surgeryIssuesDescription",
          "allergic",
          "allergy_medicine",
          "medicine_use",
          "which_medicine_use"
        ],
        "additionalProperties": false
      },
      "updateSurgeryHistory": {
        "title": "updateSurgeryHistory",
        "type": "object",
        "description": "(tsType: SurgeryHistory, schemaOptions: { title: 'updateSurgeryHistory' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "relevantIssues": {
            "type": "boolean"
          },
          "hospitalized": {
            "type": "boolean"
          },
          "parentSurgery": {
            "type": "boolean"
          },
          "hernia": {
            "type": "boolean"
          },
          "apendicitis": {
            "type": "boolean"
          },
          "gallstones": {
            "type": "boolean"
          },
          "hipFracture": {
            "type": "boolean"
          },
          "colorectalCancer": {
            "type": "boolean"
          },
          "intestinalObstruction": {
            "type": "boolean"
          },
          "pepticUlcer": {
            "type": "boolean"
          },
          "traumaticLession": {
            "type": "boolean"
          },
          "burnGraves": {
            "type": "boolean"
          },
          "anomalies": {
            "type": "boolean"
          },
          "surgeryIssues": {
            "type": "boolean"
          },
          "surgeryIssuesDescription": {
            "type": "string"
          },
          "allergic": {
            "type": "boolean"
          },
          "allergy_medicine": {
            "type": "string"
          },
          "medicine_use": {
            "type": "boolean"
          },
          "which_medicine_use": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "relevantIssues",
          "hospitalized",
          "parentSurgery",
          "hernia",
          "apendicitis",
          "gallstones",
          "hipFracture",
          "colorectalCancer",
          "intestinalObstruction",
          "pepticUlcer",
          "traumaticLession",
          "burnGraves",
          "anomalies",
          "surgeryIssues",
          "surgeryIssuesDescription",
          "allergic",
          "allergy_medicine",
          "medicine_use",
          "which_medicine_use"
        ],
        "additionalProperties": false,
        "x-typescript-type": "SurgeryHistory"
      },
      "OtorhinolaryngologyHistory": {
        "title": "OtorhinolaryngologyHistory",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "relevantIssues": {
            "type": "boolean"
          },
          "hospitalized": {
            "type": "boolean"
          },
          "otorhinolarygologyIssueParent": {
            "type": "boolean"
          },
          "surgery": {
            "type": "boolean"
          },
          "surgeryDescription": {
            "type": "string"
          },
          "allergic": {
            "type": "boolean"
          },
          "allergy_medicine": {
            "type": "string"
          },
          "medicine_use": {
            "type": "boolean"
          },
          "which_medicine_use": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "relevantIssues",
          "hospitalized",
          "otorhinolarygologyIssueParent",
          "surgery",
          "surgeryDescription",
          "allergic",
          "allergy_medicine",
          "medicine_use",
          "which_medicine_use"
        ],
        "additionalProperties": false
      },
      "updateOtorhinolaryngologyHistory": {
        "title": "updateOtorhinolaryngologyHistory",
        "type": "object",
        "description": "(tsType: OtorhinolaryngologyHistory, schemaOptions: { title: 'updateOtorhinolaryngologyHistory' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "relevantIssues": {
            "type": "boolean"
          },
          "hospitalized": {
            "type": "boolean"
          },
          "otorhinolarygologyIssueParent": {
            "type": "boolean"
          },
          "surgery": {
            "type": "boolean"
          },
          "surgeryDescription": {
            "type": "string"
          },
          "allergic": {
            "type": "boolean"
          },
          "allergy_medicine": {
            "type": "string"
          },
          "medicine_use": {
            "type": "boolean"
          },
          "which_medicine_use": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "relevantIssues",
          "hospitalized",
          "otorhinolarygologyIssueParent",
          "surgery",
          "surgeryDescription",
          "allergic",
          "allergy_medicine",
          "medicine_use",
          "which_medicine_use"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OtorhinolaryngologyHistory"
      },
      "PsychiatryHistory": {
        "title": "PsychiatryHistory",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "relevantIssues": {
            "type": "boolean"
          },
          "hospitalized": {
            "type": "boolean"
          },
          "mentalIssueParent": {
            "type": "boolean"
          },
          "psychiatricTreatment": {
            "type": "boolean"
          },
          "allergic": {
            "type": "boolean"
          },
          "allergy_medicine": {
            "type": "string"
          },
          "medicine_use": {
            "type": "boolean"
          },
          "which_medicine_use": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "relevantIssues",
          "hospitalized",
          "mentalIssueParent",
          "psychiatricTreatment",
          "allergic",
          "allergy_medicine",
          "medicine_use",
          "which_medicine_use"
        ],
        "additionalProperties": false
      },
      "updatePsychiatryHistory": {
        "title": "updatePsychiatryHistory",
        "type": "object",
        "description": "(tsType: PsychiatryHistory, schemaOptions: { title: 'updatePsychiatryHistory' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "relevantIssues": {
            "type": "boolean"
          },
          "hospitalized": {
            "type": "boolean"
          },
          "mentalIssueParent": {
            "type": "boolean"
          },
          "psychiatricTreatment": {
            "type": "boolean"
          },
          "allergic": {
            "type": "boolean"
          },
          "allergy_medicine": {
            "type": "string"
          },
          "medicine_use": {
            "type": "boolean"
          },
          "which_medicine_use": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "relevantIssues",
          "hospitalized",
          "mentalIssueParent",
          "psychiatricTreatment",
          "allergic",
          "allergy_medicine",
          "medicine_use",
          "which_medicine_use"
        ],
        "additionalProperties": false,
        "x-typescript-type": "PsychiatryHistory"
      },
      "GastroenterologyHistory": {
        "title": "GastroenterologyHistory",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "relevantIssues": {
            "type": "boolean"
          },
          "hospitalized": {
            "type": "boolean"
          },
          "gastricIssues": {
            "type": "boolean"
          },
          "abdominalSurgery": {
            "type": "boolean"
          },
          "allergic": {
            "type": "boolean"
          },
          "allergy_medicine": {
            "type": "string"
          },
          "medicine_use": {
            "type": "boolean"
          },
          "which_medicine_use": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "relevantIssues",
          "hospitalized",
          "gastricIssues",
          "abdominalSurgery",
          "allergic",
          "allergy_medicine",
          "medicine_use",
          "which_medicine_use"
        ],
        "additionalProperties": false
      },
      "updateGastroenterologyHistory": {
        "title": "updateGastroenterologyHistory",
        "type": "object",
        "description": "(tsType: GastroenterologyHistory, schemaOptions: { title: 'updateGastroenterologyHistory' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "relevantIssues": {
            "type": "boolean"
          },
          "hospitalized": {
            "type": "boolean"
          },
          "gastricIssues": {
            "type": "boolean"
          },
          "abdominalSurgery": {
            "type": "boolean"
          },
          "allergic": {
            "type": "boolean"
          },
          "allergy_medicine": {
            "type": "string"
          },
          "medicine_use": {
            "type": "boolean"
          },
          "which_medicine_use": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "relevantIssues",
          "hospitalized",
          "gastricIssues",
          "abdominalSurgery",
          "allergic",
          "allergy_medicine",
          "medicine_use",
          "which_medicine_use"
        ],
        "additionalProperties": false,
        "x-typescript-type": "GastroenterologyHistory"
      },
      "UpdateNotificationGeneric": {
        "title": "UpdateNotificationGeneric",
        "type": "object",
        "description": "(tsType: NotificactionFilter, schemaOptions: { title: 'UpdateNotificationGeneric' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "commentDoctor": {
            "type": "string"
          },
          "measurement_type": {
            "type": "string"
          },
          "notification_status": {
            "type": "string"
          },
          "notification_level": {
            "type": "string"
          },
          "status_measurement": {
            "type": "string"
          },
          "nog_id": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "nusId": {
            "type": "string"
          },
          "read_all": {
            "type": "string"
          },
          "val_time": {
            "type": "string"
          },
          "before_time": {
            "type": "string"
          },
          "UuidNotification": {
            "type": "string"
          },
          "from_date": {
            "type": "string"
          },
          "to_date": {
            "type": "string"
          },
          "timezone_offset": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "NotificactionFilter"
      },
      "UpdateStatusEmergencieNotificationGeneric": {
        "title": "UpdateStatusEmergencieNotificationGeneric",
        "type": "object",
        "description": "(tsType: NotificactionFilter, schemaOptions: { title: 'UpdateStatusEmergencieNotificationGeneric' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "commentDoctor": {
            "type": "string"
          },
          "measurement_type": {
            "type": "string"
          },
          "notification_status": {
            "type": "string"
          },
          "notification_level": {
            "type": "string"
          },
          "status_measurement": {
            "type": "string"
          },
          "nog_id": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "nusId": {
            "type": "string"
          },
          "read_all": {
            "type": "string"
          },
          "val_time": {
            "type": "string"
          },
          "before_time": {
            "type": "string"
          },
          "UuidNotification": {
            "type": "string"
          },
          "from_date": {
            "type": "string"
          },
          "to_date": {
            "type": "string"
          },
          "timezone_offset": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "NotificactionFilter"
      },
      "UpdateStatusNotification": {
        "title": "UpdateStatusNotification",
        "type": "object",
        "description": "(tsType: NotificactionFilter, schemaOptions: { title: 'UpdateStatusNotification' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "commentDoctor": {
            "type": "string"
          },
          "measurement_type": {
            "type": "string"
          },
          "notification_status": {
            "type": "string"
          },
          "notification_level": {
            "type": "string"
          },
          "status_measurement": {
            "type": "string"
          },
          "nog_id": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "nusId": {
            "type": "string"
          },
          "read_all": {
            "type": "string"
          },
          "val_time": {
            "type": "string"
          },
          "before_time": {
            "type": "string"
          },
          "UuidNotification": {
            "type": "string"
          },
          "from_date": {
            "type": "string"
          },
          "to_date": {
            "type": "string"
          },
          "timezone_offset": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "NotificactionFilter"
      },
      "DermatologyHistory": {
        "title": "DermatologyHistory",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "relevantIssues": {
            "type": "boolean"
          },
          "hospitalized": {
            "type": "boolean"
          },
          "alergySkinProducts": {
            "type": "boolean"
          },
          "alergySkinProductsDescription": {
            "type": "string"
          },
          "skinDiseaseParent": {
            "type": "boolean"
          },
          "skinIssue": {
            "type": "boolean"
          },
          "skinIssueDescription": {
            "type": "string"
          },
          "skinDisease": {
            "type": "boolean"
          },
          "skinSurgery": {
            "type": "boolean"
          },
          "skinCareProduct": {
            "type": "boolean"
          },
          "skinCareProductDescription": {
            "type": "string"
          },
          "allergic": {
            "type": "boolean"
          },
          "allergy_medicine": {
            "type": "string"
          },
          "medicine_use": {
            "type": "boolean"
          },
          "which_medicine_use": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "relevantIssues",
          "hospitalized",
          "alergySkinProducts",
          "alergySkinProductsDescription",
          "skinDiseaseParent",
          "skinIssue",
          "skinIssueDescription",
          "skinDisease",
          "skinSurgery",
          "skinCareProduct",
          "skinCareProductDescription",
          "allergic",
          "allergy_medicine",
          "medicine_use",
          "which_medicine_use"
        ],
        "additionalProperties": false
      },
      "updateDermatologyHistory": {
        "title": "updateDermatologyHistory",
        "type": "object",
        "description": "(tsType: DermatologyHistory, schemaOptions: { title: 'updateDermatologyHistory' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "relevantIssues": {
            "type": "boolean"
          },
          "hospitalized": {
            "type": "boolean"
          },
          "alergySkinProducts": {
            "type": "boolean"
          },
          "alergySkinProductsDescription": {
            "type": "string"
          },
          "skinDiseaseParent": {
            "type": "boolean"
          },
          "skinIssue": {
            "type": "boolean"
          },
          "skinIssueDescription": {
            "type": "string"
          },
          "skinDisease": {
            "type": "boolean"
          },
          "skinSurgery": {
            "type": "boolean"
          },
          "skinCareProduct": {
            "type": "boolean"
          },
          "skinCareProductDescription": {
            "type": "string"
          },
          "allergic": {
            "type": "boolean"
          },
          "allergy_medicine": {
            "type": "string"
          },
          "medicine_use": {
            "type": "boolean"
          },
          "which_medicine_use": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "relevantIssues",
          "hospitalized",
          "alergySkinProducts",
          "alergySkinProductsDescription",
          "skinDiseaseParent",
          "skinIssue",
          "skinIssueDescription",
          "skinDisease",
          "skinSurgery",
          "skinCareProduct",
          "skinCareProductDescription",
          "allergic",
          "allergy_medicine",
          "medicine_use",
          "which_medicine_use"
        ],
        "additionalProperties": false,
        "x-typescript-type": "DermatologyHistory"
      },
      "InternalHistory": {
        "title": "InternalHistory",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "arrhythmia": {
            "type": "boolean"
          },
          "asthma": {
            "type": "boolean"
          },
          "cancer": {
            "type": "boolean"
          },
          "cirrhosis": {
            "type": "boolean"
          },
          "diabetes": {
            "type": "boolean"
          },
          "epilepsy": {
            "type": "boolean"
          },
          "arterial_hypertension": {
            "type": "boolean"
          },
          "hypothyroidism": {
            "type": "boolean"
          },
          "headache": {
            "type": "boolean"
          },
          "obesity": {
            "type": "boolean"
          },
          "stroke": {
            "type": "boolean"
          },
          "thrombosis": {
            "type": "boolean"
          },
          "depression": {
            "type": "boolean"
          },
          "anxiety": {
            "type": "boolean"
          },
          "rheumatoid_arthritis": {
            "type": "boolean"
          },
          "lupus": {
            "type": "boolean"
          },
          "others": {
            "type": "boolean"
          },
          "others_pathology": {
            "type": "string"
          },
          "smoke": {
            "type": "boolean"
          },
          "cigarretes": {
            "type": "string"
          },
          "years_smoking": {
            "type": "string"
          },
          "alcoholic": {
            "type": "boolean"
          },
          "drink_frequency_id": {
            "type": "number"
          },
          "fracture": {
            "type": "boolean"
          },
          "which_surgery": {
            "type": "string"
          },
          "when_surgery": {
            "type": "string"
          },
          "allergic": {
            "type": "boolean"
          },
          "allergy_medicine": {
            "type": "string"
          },
          "physical_activity": {
            "type": "boolean"
          },
          "exercise_type": {
            "type": "string"
          },
          "exercise_frequency_id": {
            "type": "string"
          },
          "family_history_mother": {
            "type": "string"
          },
          "family_history_father": {
            "type": "string"
          },
          "type_of_diet": {
            "type": "string"
          },
          "medicine_use": {
            "type": "boolean"
          },
          "which_medicine_use": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "arrhythmia",
          "asthma",
          "cancer",
          "cirrhosis",
          "diabetes",
          "epilepsy",
          "arterial_hypertension",
          "hypothyroidism",
          "headache",
          "obesity",
          "stroke",
          "thrombosis",
          "depression",
          "anxiety",
          "rheumatoid_arthritis",
          "lupus",
          "others",
          "others_pathology",
          "smoke",
          "cigarretes",
          "years_smoking",
          "alcoholic",
          "drink_frequency_id",
          "fracture",
          "which_surgery",
          "when_surgery",
          "allergic",
          "allergy_medicine",
          "physical_activity",
          "exercise_type",
          "exercise_frequency_id",
          "family_history_mother",
          "family_history_father",
          "type_of_diet",
          "medicine_use",
          "which_medicine_use"
        ],
        "additionalProperties": false
      },
      "updateInternalHistory": {
        "title": "updateInternalHistory",
        "type": "object",
        "description": "(tsType: InternalHistory, schemaOptions: { title: 'updateInternalHistory' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "arrhythmia": {
            "type": "boolean"
          },
          "asthma": {
            "type": "boolean"
          },
          "cancer": {
            "type": "boolean"
          },
          "cirrhosis": {
            "type": "boolean"
          },
          "diabetes": {
            "type": "boolean"
          },
          "epilepsy": {
            "type": "boolean"
          },
          "arterial_hypertension": {
            "type": "boolean"
          },
          "hypothyroidism": {
            "type": "boolean"
          },
          "headache": {
            "type": "boolean"
          },
          "obesity": {
            "type": "boolean"
          },
          "stroke": {
            "type": "boolean"
          },
          "thrombosis": {
            "type": "boolean"
          },
          "depression": {
            "type": "boolean"
          },
          "anxiety": {
            "type": "boolean"
          },
          "rheumatoid_arthritis": {
            "type": "boolean"
          },
          "lupus": {
            "type": "boolean"
          },
          "others": {
            "type": "boolean"
          },
          "others_pathology": {
            "type": "string"
          },
          "smoke": {
            "type": "boolean"
          },
          "cigarretes": {
            "type": "string"
          },
          "years_smoking": {
            "type": "string"
          },
          "alcoholic": {
            "type": "boolean"
          },
          "drink_frequency_id": {
            "type": "number"
          },
          "fracture": {
            "type": "boolean"
          },
          "which_surgery": {
            "type": "string"
          },
          "when_surgery": {
            "type": "string"
          },
          "allergic": {
            "type": "boolean"
          },
          "allergy_medicine": {
            "type": "string"
          },
          "physical_activity": {
            "type": "boolean"
          },
          "exercise_type": {
            "type": "string"
          },
          "exercise_frequency_id": {
            "type": "string"
          },
          "family_history_mother": {
            "type": "string"
          },
          "family_history_father": {
            "type": "string"
          },
          "type_of_diet": {
            "type": "string"
          },
          "medicine_use": {
            "type": "boolean"
          },
          "which_medicine_use": {
            "type": "string"
          }
        },
        "required": [
          "uuid",
          "uuid_edit",
          "arrhythmia",
          "asthma",
          "cancer",
          "cirrhosis",
          "diabetes",
          "epilepsy",
          "arterial_hypertension",
          "hypothyroidism",
          "headache",
          "obesity",
          "stroke",
          "thrombosis",
          "depression",
          "anxiety",
          "rheumatoid_arthritis",
          "lupus",
          "others",
          "others_pathology",
          "smoke",
          "cigarretes",
          "years_smoking",
          "alcoholic",
          "drink_frequency_id",
          "fracture",
          "which_surgery",
          "when_surgery",
          "allergic",
          "allergy_medicine",
          "physical_activity",
          "exercise_type",
          "exercise_frequency_id",
          "family_history_mother",
          "family_history_father",
          "type_of_diet",
          "medicine_use",
          "which_medicine_use"
        ],
        "additionalProperties": false,
        "x-typescript-type": "InternalHistory"
      },
      "deleteUser": {
        "title": "deleteUser",
        "type": "object",
        "description": "(tsType: UserUuid, schemaOptions: { title: 'deleteUser' })",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          }
        },
        "required": [
          "uuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UserUuid"
      },
      "UsersWithRelations": {
        "title": "UsersWithRelations",
        "type": "object",
        "description": "(tsType: UsersWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "user_id": {
            "type": "number"
          },
          "uuid": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "user_name": {
            "type": "string"
          },
          "type_user_id": {
            "type": "number"
          },
          "password": {
            "type": "string"
          },
          "uuid_clinic": {
            "type": "string"
          },
          "reference_id": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "last_name": {
            "type": "string"
          },
          "birth_date": {
            "type": "string"
          },
          "phone": {
            "type": "string"
          },
          "emergency_phone": {
            "type": "string"
          },
          "birth_address_id": {
            "type": "number"
          },
          "address_id": {
            "type": "number"
          },
          "height": {
            "type": "number"
          },
          "Weight": {
            "type": "number"
          },
          "gender_id": {
            "type": "number"
          },
          "reset_key": {
            "type": "string"
          },
          "check_flag": {
            "type": "number"
          },
          "cnmaeusua": {
            "type": "string"
          },
          "domain_id": {
            "type": "number"
          },
          "Photo": {
            "type": "string"
          },
          "fcmToken": {
            "type": "string"
          },
          "endpointARN": {
            "type": "string"
          },
          "unit_height_id": {
            "type": "number"
          },
          "unit_weight_id": {
            "type": "number"
          },
          "unit_temperature_id": {
            "type": "number"
          }
        },
        "required": [
          "uuid",
          "email",
          "user_name",
          "type_user_id",
          "password",
          "uuid_clinic",
          "reference_id",
          "name",
          "last_name",
          "birth_date",
          "phone",
          "birth_address_id",
          "address_id",
          "gender_id"
        ],
        "additionalProperties": false,
        "x-typescript-type": "UsersWithRelations"
      },
      "store_item": {
        "title": "store_item",
        "type": "object",
        "description": "(tsType: Storage_Model, schemaOptions: { title: 'store_item' })",
        "properties": {
          "item_name": {
            "type": "string"
          },
          "userUuid": {
            "type": "string"
          }
        },
        "required": [
          "item_name"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Storage_Model"
      },
      "Storage_Model": {
        "title": "Storage_Model",
        "type": "object",
        "properties": {
          "item_name": {
            "type": "string"
          },
          "userUuid": {
            "type": "string"
          }
        },
        "required": [
          "item_name"
        ],
        "additionalProperties": false
      },
      "SatisfactionSurvey": {
        "title": "SatisfactionSurvey",
        "type": "object",
        "properties": {
          "formUuid": {
            "type": "string"
          },
          "doctorSpecialtyName": {
            "type": "string"
          },
          "score": {
            "type": "number"
          }
        },
        "required": [
          "formUuid",
          "doctorSpecialtyName",
          "score"
        ],
        "additionalProperties": false
      },
      "SubmitSatisfactionSurvey": {
        "title": "SubmitSatisfactionSurvey",
        "type": "object",
        "description": "(tsType: SatisfactionSurvey, schemaOptions: { title: 'SubmitSatisfactionSurvey' })",
        "properties": {
          "formUuid": {
            "type": "string"
          },
          "doctorSpecialtyName": {
            "type": "string"
          },
          "score": {
            "type": "number"
          }
        },
        "required": [
          "formUuid",
          "doctorSpecialtyName",
          "score"
        ],
        "additionalProperties": false,
        "x-typescript-type": "SatisfactionSurvey"
      },
      "Nextgen_GSA_Model_Response": {
        "title": "Nextgen_GSA_Model_Response",
        "type": "object",
        "properties": {
          "access_token": {
            "type": "string"
          },
          "token_type": {
            "type": "string"
          },
          "expires_in": {
            "type": "number"
          }
        },
        "required": [
          "access_token",
          "token_type",
          "expires_in"
        ],
        "additionalProperties": false
      },
      "Nextgen_Login_Model_Response": {
        "title": "Nextgen_Login_Model_Response",
        "type": "object",
        "properties": {
          "uuid": {
            "type": "string"
          },
          "firstName": {
            "type": "string"
          },
          "lastName": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "phone": {
            "type": "string"
          },
          "birthDate": {
            "type": "string"
          },
          "weight": {
            "type": "number"
          },
          "height": {
            "type": "number"
          },
          "id": {
            "type": "string"
          },
          "type_user_id": {
            "type": "number"
          },
          "role": {
            "type": "string"
          },
          "token": {
            "type": "string"
          },
          "external_data": {
            "$ref": "#/components/schemas/Nextgen_GSA_Model_Response"
          }
        },
        "required": [
          "uuid",
          "firstName",
          "lastName",
          "email",
          "id",
          "type_user_id",
          "role",
          "token",
          "external_data"
        ],
        "additionalProperties": false
      },
      "Nextgen_Login_Model": {
        "title": "Nextgen_Login_Model",
        "type": "object",
        "properties": {
          "email": {
            "type": "string"
          },
          "password": {
            "type": "string"
          }
        },
        "required": [
          "email",
          "password"
        ],
        "additionalProperties": false
      },
      "blood_pressure_model": {
        "title": "blood_pressure_model",
        "type": "object",
        "properties": {
          "systolic": {
            "type": "number"
          },
          "diastolic": {
            "type": "number"
          },
          "beats_per_minute": {
            "type": "number"
          },
          "mean": {
            "type": "number"
          },
          "body_movement": {
            "type": "string"
          },
          "cuff_fit": {
            "type": "string"
          },
          "irregular_pulse": {
            "type": "string"
          },
          "pulse_rate": {
            "type": "string"
          },
          "device": {
            "type": "string"
          }
        },
        "required": [
          "systolic",
          "diastolic",
          "beats_per_minute",
          "mean"
        ],
        "additionalProperties": false
      },
      "oxygen_saturation_model": {
        "title": "oxygen_saturation_model",
        "type": "object",
        "properties": {
          "oxygen_saturation": {
            "type": "number"
          },
          "perfusion_index": {
            "type": "number"
          },
          "beats_per_minute": {
            "type": "number"
          },
          "device": {
            "type": "string"
          }
        },
        "required": [
          "oxygen_saturation",
          "perfusion_index",
          "beats_per_minute"
        ],
        "additionalProperties": false
      },
      "weight_model": {
        "title": "weight_model",
        "type": "object",
        "properties": {
          "weight": {
            "type": "number"
          },
          "mass_index": {
            "type": "number"
          },
          "unit": {
            "type": "string"
          },
          "device": {
            "type": "string"
          }
        },
        "required": [
          "weight",
          "unit"
        ],
        "additionalProperties": false
      },
      "temperature_model": {
        "title": "temperature_model",
        "type": "object",
        "properties": {
          "patient_temperature": {
            "type": "number"
          },
          "ambient_temperature": {
            "type": "number"
          },
          "unit": {
            "type": "string"
          },
          "context": {
            "type": "string"
          },
          "mode": {
            "type": "string"
          },
          "device": {
            "type": "string"
          }
        },
        "required": [
          "patient_temperature",
          "unit"
        ],
        "additionalProperties": false
      },
      "glucose_model": {
        "title": "glucose_model",
        "type": "object",
        "properties": {
          "glucose": {
            "type": "number"
          },
          "unit": {
            "type": "string"
          },
          "context": {
            "type": "string"
          },
          "strip_code": {
            "type": "string"
          },
          "device": {
            "type": "string"
          }
        },
        "required": [
          "glucose",
          "unit",
          "context"
        ],
        "additionalProperties": false
      },
      "cholesterol_model": {
        "title": "cholesterol_model",
        "type": "object",
        "properties": {
          "cholesterol": {
            "type": "number"
          },
          "unit": {
            "type": "string"
          },
          "context": {
            "type": "string"
          },
          "strip_code": {
            "type": "string"
          },
          "device": {
            "type": "string"
          }
        },
        "required": [
          "cholesterol",
          "unit",
          "context"
        ],
        "additionalProperties": false
      },
      "triglycerides_model": {
        "title": "triglycerides_model",
        "type": "object",
        "properties": {
          "triglycerides": {
            "type": "number"
          },
          "unit": {
            "type": "string"
          },
          "context": {
            "type": "string"
          },
          "strip_code": {
            "type": "string"
          },
          "device": {
            "type": "string"
          }
        },
        "required": [
          "triglycerides",
          "unit",
          "context"
        ],
        "additionalProperties": false
      },
      "uric_acid_model": {
        "title": "uric_acid_model",
        "type": "object",
        "properties": {
          "uric_acid": {
            "type": "number"
          },
          "unit": {
            "type": "string"
          },
          "context": {
            "type": "string"
          },
          "strip_code": {
            "type": "string"
          },
          "device": {
            "type": "string"
          }
        },
        "required": [
          "uric_acid",
          "unit",
          "context"
        ],
        "additionalProperties": false
      },
      "lactate_model": {
        "title": "lactate_model",
        "type": "object",
        "properties": {
          "lactate": {
            "type": "number"
          },
          "unit": {
            "type": "string"
          },
          "context": {
            "type": "string"
          },
          "strip_code": {
            "type": "string"
          },
          "device": {
            "type": "string"
          }
        },
        "required": [
          "lactate",
          "unit",
          "context"
        ],
        "additionalProperties": false
      },
      "ketone_model": {
        "title": "ketone_model",
        "type": "object",
        "properties": {
          "ketone": {
            "type": "number"
          },
          "unit": {
            "type": "string"
          },
          "context": {
            "type": "string"
          },
          "strip_code": {
            "type": "string"
          },
          "device": {
            "type": "string"
          }
        },
        "required": [
          "ketone",
          "unit",
          "context"
        ],
        "additionalProperties": false
      },
      "height_model": {
        "title": "height_model",
        "type": "object",
        "properties": {
          "height": {
            "type": "number"
          },
          "unit": {
            "type": "string"
          },
          "device": {
            "type": "string"
          }
        },
        "required": [
          "height",
          "unit"
        ],
        "additionalProperties": false
      },
      "hemoglobin_model": {
        "title": "hemoglobin_model",
        "type": "object",
        "properties": {
          "hemoglobin": {
            "type": "number"
          },
          "unit": {
            "type": "string"
          },
          "device": {
            "type": "string"
          }
        },
        "required": [
          "hemoglobin",
          "unit"
        ],
        "additionalProperties": false
      },
      "base_measurement_model": {
        "title": "base_measurement_model",
        "type": "object",
        "properties": {
          "blood_pressure": {
            "$ref": "#/components/schemas/blood_pressure_model"
          },
          "oxygen_saturation": {
            "$ref": "#/components/schemas/oxygen_saturation_model"
          },
          "weight": {
            "$ref": "#/components/schemas/weight_model"
          },
          "temperature": {
            "$ref": "#/components/schemas/temperature_model"
          },
          "glucose": {
            "$ref": "#/components/schemas/glucose_model"
          },
          "cholesterol": {
            "$ref": "#/components/schemas/cholesterol_model"
          },
          "triglycerides": {
            "$ref": "#/components/schemas/triglycerides_model"
          },
          "uric_acid": {
            "$ref": "#/components/schemas/uric_acid_model"
          },
          "lactate": {
            "$ref": "#/components/schemas/lactate_model"
          },
          "ketone": {
            "$ref": "#/components/schemas/ketone_model"
          },
          "height": {
            "$ref": "#/components/schemas/height_model"
          },
          "hemoglobin": {
            "$ref": "#/components/schemas/hemoglobin_model"
          },
          "measurement_date": {
            "type": "string",
            "format": "date-time"
          },
          "device_uuid": {
            "type": "string"
          },
          "measurement_device": {
            "type": "string"
          },
          "measurement_type": {
            "type": "string"
          }
        },
        "required": [
          "measurement_date",
          "device_uuid",
          "measurement_type"
        ],
        "additionalProperties": false
      },
      "measurement_model": {
        "title": "measurement_model",
        "type": "object",
        "properties": {
          "measurements": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/base_measurement_model"
            }
          },
          "emmitec_patient_uuid": {
            "type": "string"
          },
          "emmitec_doctor_uuid": {
            "type": "string"
          },
          "nextgen_patient_uuid": {
            "type": "string"
          },
          "nextgen_doctor_uuid": {
            "type": "string"
          }
        },
        "required": [
          "emmitec_patient_uuid",
          "emmitec_doctor_uuid",
          "nextgen_patient_uuid",
          "nextgen_doctor_uuid"
        ],
        "additionalProperties": false
      },
      "Nextgen_Encounter": {
        "title": "Nextgen_Encounter",
        "type": "object",
        "properties": {
          "location_id": {
            "type": "string"
          },
          "provider_id": {
            "type": "string"
          }
        },
        "required": [
          "location_id"
        ],
        "additionalProperties": false
      },
      "ProvenanceInfo": {
        "title": "ProvenanceInfo",
        "type": "object",
        "properties": {
          "authorTime": {
            "type": "string",
            "format": "date-time"
          },
          "authorNpi": {
            "type": "string"
          },
          "authorFirstName": {
            "type": "string"
          },
          "authorLastName": {
            "type": "string"
          },
          "authorSuffix": {
            "type": "string"
          },
          "representingOrganizationNpi": {
            "type": "string"
          },
          "representingOrganizationName": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Nextgen_Vital": {
        "title": "Nextgen_Vital",
        "type": "object",
        "properties": {
          "HeightInFeet": {
            "type": "number"
          },
          "HeightInInches": {
            "type": "number"
          },
          "HeightInTotalInches": {
            "type": "number"
          },
          "HeightInCentimeters": {
            "type": "number"
          },
          "HeightBodyPosition": {
            "type": "string"
          },
          "HeightDate": {
            "type": "string",
            "format": "date-time"
          },
          "HeightMethod": {
            "type": "string"
          },
          "WeightInPounds": {
            "type": "number"
          },
          "WeightInKilograms": {
            "type": "number"
          },
          "WeightContext": {
            "type": "string"
          },
          "TemperatureDegreesFahrenheit": {
            "type": "number"
          },
          "TemperatureDegreesCelcius": {
            "type": "number"
          },
          "TemperatureSite": {
            "type": "string"
          },
          "BloodPressureSystolic": {
            "type": "integer"
          },
          "BloodPressureDiastolic": {
            "type": "integer"
          },
          "BloodPressureBodyPosition": {
            "type": "string"
          },
          "BloodPressureTargetSite": {
            "type": "string"
          },
          "BloodPressureTargetSide": {
            "type": "string"
          },
          "BloodPressureMethod": {
            "type": "string"
          },
          "BloodPressureCuffSize": {
            "type": "string"
          },
          "PulseRate": {
            "type": "integer"
          },
          "PulsePattern": {
            "type": "string"
          },
          "RespirationRate": {
            "type": "integer"
          },
          "FractionOfInspiredOxygenDeliveryMethod": {
            "type": "string"
          },
          "FractionOfInspiredOxygenRoomAir": {
            "type": "integer"
          },
          "FractionOfInspiredOxygen": {
            "type": "integer"
          },
          "FractionOfInspiredOxygenScore": {
            "type": "string"
          },
          "PulseOxRest": {
            "type": "integer"
          },
          "PulseOxAmb": {
            "type": "integer"
          },
          "OxygenType": {
            "type": "string"
          },
          "OxygenLiterPerMinute": {
            "type": "number"
          },
          "SpO2Timing": {
            "type": "string"
          },
          "FingerProbe": {
            "type": "string"
          },
          "PeakFlow": {
            "type": "integer"
          },
          "PeakFlowTiming": {
            "type": "string"
          },
          "PeakFlowMethod": {
            "type": "string"
          },
          "PainLevel": {
            "type": "string"
          },
          "PainMethod": {
            "type": "string"
          },
          "IsUnobtainable": {
            "type": "boolean"
          },
          "UnobtainableVital": {
            "type": "string"
          },
          "HasPatientRefused": {
            "type": "boolean"
          },
          "PatientRefusedVital": {
            "type": "string"
          },
          "CalculateBsa": {
            "type": "boolean"
          },
          "VitalSignsDate": {
            "type": "string",
            "format": "date-time"
          },
          "Comments": {
            "type": "string"
          },
          "PerformedBy": {
            "type": "string"
          },
          "ProvenanceInfo": {
            "$ref": "#/components/schemas/ProvenanceInfo"
          },
          "IsExternalData": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "MedicalEvolutionHistory": {
        "title": "MedicalEvolutionHistory",
        "type": "object",
        "properties": {
          "patientUuid": {
            "type": "string"
          },
          "doctorUuid": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "cardNumber": {
            "type": "string"
          },
          "birthDate": {
            "type": "string"
          },
          "age": {
            "type": "number"
          },
          "sex": {
            "type": "number"
          },
          "telephoneNumber": {
            "type": "string"
          },
          "address": {
            "type": "string"
          },
          "profession": {
            "type": "string"
          },
          "typeOfService": {
            "type": "number"
          },
          "reasonForConsultation": {
            "type": "string"
          },
          "objective": {
            "type": "string"
          },
          "evaluation": {
            "type": "string"
          },
          "plan": {
            "type": "string"
          },
          "weight": {
            "type": "number"
          },
          "height": {
            "type": "number"
          },
          "bloodPressure": {
            "type": "string"
          },
          "heartRate": {
            "type": "number"
          },
          "imc": {
            "type": "number"
          },
          "respiratoryRate": {
            "type": "number"
          },
          "temperature": {
            "type": "number"
          },
          "oxygenSaturation": {
            "type": "number"
          },
          "capillaryBloodGlucose": {
            "type": "number"
          },
          "cidPrincipal": {
            "type": "string"
          },
          "cid2": {
            "type": "string"
          },
          "cid3": {
            "type": "string"
          },
          "professional": {
            "type": "number"
          },
          "typeOfAttendance": {
            "type": "number"
          },
          "expectedDate": {
            "type": "string"
          },
          "status": {
            "type": "number"
          },
          "speciality": {
            "type": "string"
          },
          "reasonForReference": {
            "type": "string"
          },
          "counterReference": {
            "type": "string"
          },
          "code": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "listOfMedicines": {
            "type": "string"
          },
          "routeAndDosage": {
            "type": "string"
          },
          "doctorElectronicSignature": {
            "type": "string"
          },
          "laboratoryResults": {
            "type": "string"
          },
          "ImageResults": {
            "type": "string"
          },
          "cardiovascularRisk": {
            "type": "string"
          },
          "diabetesMellitus": {
            "type": "string"
          },
          "elderly": {
            "type": "string"
          },
          "riskOfOsteoporoticFracture": {
            "type": "string"
          },
          "creatinineClearance": {
            "type": "string"
          },
          "child": {
            "type": "string"
          },
          "pregnant": {
            "type": "string"
          },
          "indicators": {
            "type": "string"
          }
        },
        "required": [
          "patientUuid",
          "doctorUuid",
          "fullName",
          "cardNumber",
          "birthDate",
          "age",
          "sex",
          "telephoneNumber",
          "address",
          "profession",
          "typeOfService",
          "reasonForConsultation",
          "objective",
          "evaluation",
          "plan",
          "weight",
          "height",
          "bloodPressure",
          "heartRate",
          "imc",
          "respiratoryRate",
          "temperature",
          "oxygenSaturation",
          "capillaryBloodGlucose",
          "cidPrincipal",
          "cid2",
          "cid3",
          "professional",
          "typeOfAttendance",
          "expectedDate",
          "status",
          "speciality",
          "reasonForReference",
          "counterReference",
          "code",
          "description",
          "quantity",
          "listOfMedicines",
          "routeAndDosage",
          "doctorElectronicSignature",
          "laboratoryResults",
          "ImageResults",
          "cardiovascularRisk",
          "diabetesMellitus",
          "elderly",
          "riskOfOsteoporoticFracture",
          "creatinineClearance",
          "child",
          "pregnant",
          "indicators"
        ],
        "additionalProperties": true
      },
      "upload Medical Evolution Form": {
        "title": "upload Medical Evolution Form",
        "type": "object",
        "description": "(tsType: MedicalEvolutionHistory, schemaOptions: { title: 'upload Medical Evolution Form' })",
        "properties": {
          "patientUuid": {
            "type": "string"
          },
          "doctorUuid": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "cardNumber": {
            "type": "string"
          },
          "birthDate": {
            "type": "string"
          },
          "age": {
            "type": "number"
          },
          "sex": {
            "type": "number"
          },
          "telephoneNumber": {
            "type": "string"
          },
          "address": {
            "type": "string"
          },
          "profession": {
            "type": "string"
          },
          "typeOfService": {
            "type": "number"
          },
          "reasonForConsultation": {
            "type": "string"
          },
          "objective": {
            "type": "string"
          },
          "evaluation": {
            "type": "string"
          },
          "plan": {
            "type": "string"
          },
          "weight": {
            "type": "number"
          },
          "height": {
            "type": "number"
          },
          "bloodPressure": {
            "type": "string"
          },
          "heartRate": {
            "type": "number"
          },
          "imc": {
            "type": "number"
          },
          "respiratoryRate": {
            "type": "number"
          },
          "temperature": {
            "type": "number"
          },
          "oxygenSaturation": {
            "type": "number"
          },
          "capillaryBloodGlucose": {
            "type": "number"
          },
          "cidPrincipal": {
            "type": "string"
          },
          "cid2": {
            "type": "string"
          },
          "cid3": {
            "type": "string"
          },
          "professional": {
            "type": "number"
          },
          "typeOfAttendance": {
            "type": "number"
          },
          "expectedDate": {
            "type": "string"
          },
          "status": {
            "type": "number"
          },
          "speciality": {
            "type": "string"
          },
          "reasonForReference": {
            "type": "string"
          },
          "counterReference": {
            "type": "string"
          },
          "code": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "listOfMedicines": {
            "type": "string"
          },
          "routeAndDosage": {
            "type": "string"
          },
          "doctorElectronicSignature": {
            "type": "string"
          },
          "laboratoryResults": {
            "type": "string"
          },
          "ImageResults": {
            "type": "string"
          },
          "cardiovascularRisk": {
            "type": "string"
          },
          "diabetesMellitus": {
            "type": "string"
          },
          "elderly": {
            "type": "string"
          },
          "riskOfOsteoporoticFracture": {
            "type": "string"
          },
          "creatinineClearance": {
            "type": "string"
          },
          "child": {
            "type": "string"
          },
          "pregnant": {
            "type": "string"
          },
          "indicators": {
            "type": "string"
          }
        },
        "required": [
          "patientUuid",
          "doctorUuid",
          "fullName",
          "cardNumber",
          "birthDate",
          "age",
          "sex",
          "telephoneNumber",
          "address",
          "profession",
          "typeOfService",
          "reasonForConsultation",
          "objective",
          "evaluation",
          "plan",
          "weight",
          "height",
          "bloodPressure",
          "heartRate",
          "imc",
          "respiratoryRate",
          "temperature",
          "oxygenSaturation",
          "capillaryBloodGlucose",
          "cidPrincipal",
          "cid2",
          "cid3",
          "professional",
          "typeOfAttendance",
          "expectedDate",
          "status",
          "speciality",
          "reasonForReference",
          "counterReference",
          "code",
          "description",
          "quantity",
          "listOfMedicines",
          "routeAndDosage",
          "doctorElectronicSignature",
          "laboratoryResults",
          "ImageResults",
          "cardiovascularRisk",
          "diabetesMellitus",
          "elderly",
          "riskOfOsteoporoticFracture",
          "creatinineClearance",
          "child",
          "pregnant",
          "indicators"
        ],
        "additionalProperties": true,
        "x-typescript-type": "MedicalEvolutionHistory"
      },
      "NursingEvolutionHistory": {
        "title": "NursingEvolutionHistory",
        "type": "object",
        "properties": {
          "doctorUuid": {
            "type": "string"
          },
          "patientUuid": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "cardNumber": {
            "type": "string"
          },
          "birthDate": {
            "type": "string"
          },
          "sex": {
            "type": "number"
          },
          "telephoneNumber": {
            "type": "string"
          },
          "reasonForConsultation": {
            "type": "string"
          },
          "objective": {
            "type": "string"
          },
          "diagnosis": {
            "type": "string"
          },
          "plan": {
            "type": "string"
          },
          "weight": {
            "type": "number"
          },
          "height": {
            "type": "number"
          },
          "bloodPressure": {
            "type": "string"
          },
          "heartRate": {
            "type": "number"
          },
          "imc": {
            "type": "number"
          },
          "respiratoryRate": {
            "type": "number"
          },
          "temperature": {
            "type": "number"
          },
          "cid": {
            "type": "string"
          },
          "ciap": {
            "type": "string"
          },
          "usedMedicalSupplies": {
            "type": "string"
          },
          "usedMedicines": {
            "type": "string"
          },
          "skin": {
            "type": "string"
          },
          "head": {
            "type": "string"
          },
          "hairScalp": {
            "type": "string"
          },
          "face": {
            "type": "string"
          },
          "neck": {
            "type": "string"
          },
          "eyes": {
            "type": "string"
          },
          "earAndHearing": {
            "type": "string"
          },
          "mouth": {
            "type": "string"
          },
          "throat": {
            "type": "string"
          },
          "noseAndSmell": {
            "type": "string"
          },
          "thorax": {
            "type": "string"
          },
          "lungs": {
            "type": "string"
          },
          "breast": {
            "type": "string"
          },
          "cardiovascular": {
            "type": "string"
          },
          "abdomen": {
            "type": "string"
          },
          "genitalia": {
            "type": "string"
          },
          "extremities": {
            "type": "string"
          },
          "nervousSystem": {
            "type": "string"
          },
          "musculoskeletal": {
            "type": "string"
          },
          "nutrition": {
            "type": "string"
          },
          "mentalStatus": {
            "type": "string"
          },
          "lifeActivity": {
            "type": "string"
          },
          "pain": {
            "type": "string"
          },
          "ivTherapy": {
            "type": "string"
          },
          "mobility": {
            "type": "string"
          },
          "transport": {
            "type": "string"
          },
          "supervisoryVisit": {
            "type": "string"
          },
          "other": {
            "type": "string"
          },
          "clinicalAssessment": {
            "type": "string"
          }
        },
        "required": [
          "doctorUuid",
          "patientUuid",
          "fullName",
          "cardNumber",
          "birthDate",
          "sex",
          "telephoneNumber",
          "reasonForConsultation",
          "objective",
          "diagnosis",
          "plan",
          "weight",
          "height",
          "bloodPressure",
          "heartRate",
          "imc",
          "respiratoryRate",
          "temperature",
          "cid",
          "ciap",
          "usedMedicalSupplies",
          "usedMedicines",
          "skin",
          "head",
          "hairScalp",
          "face",
          "neck",
          "eyes",
          "earAndHearing",
          "mouth",
          "throat",
          "noseAndSmell",
          "thorax",
          "lungs",
          "breast",
          "cardiovascular",
          "abdomen",
          "genitalia",
          "extremities",
          "nervousSystem",
          "musculoskeletal",
          "nutrition",
          "mentalStatus",
          "lifeActivity",
          "pain",
          "ivTherapy",
          "mobility",
          "transport",
          "supervisoryVisit",
          "other",
          "clinicalAssessment"
        ],
        "additionalProperties": false
      },
      "Upload Nursing Evolution Form": {
        "title": "Upload Nursing Evolution Form",
        "type": "object",
        "description": "(tsType: NursingEvolutionHistory, schemaOptions: { title: 'Upload Nursing Evolution Form' })",
        "properties": {
          "doctorUuid": {
            "type": "string"
          },
          "patientUuid": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "cardNumber": {
            "type": "string"
          },
          "birthDate": {
            "type": "string"
          },
          "sex": {
            "type": "number"
          },
          "telephoneNumber": {
            "type": "string"
          },
          "reasonForConsultation": {
            "type": "string"
          },
          "objective": {
            "type": "string"
          },
          "diagnosis": {
            "type": "string"
          },
          "plan": {
            "type": "string"
          },
          "weight": {
            "type": "number"
          },
          "height": {
            "type": "number"
          },
          "bloodPressure": {
            "type": "string"
          },
          "heartRate": {
            "type": "number"
          },
          "imc": {
            "type": "number"
          },
          "respiratoryRate": {
            "type": "number"
          },
          "temperature": {
            "type": "number"
          },
          "cid": {
            "type": "string"
          },
          "ciap": {
            "type": "string"
          },
          "usedMedicalSupplies": {
            "type": "string"
          },
          "usedMedicines": {
            "type": "string"
          },
          "skin": {
            "type": "string"
          },
          "head": {
            "type": "string"
          },
          "hairScalp": {
            "type": "string"
          },
          "face": {
            "type": "string"
          },
          "neck": {
            "type": "string"
          },
          "eyes": {
            "type": "string"
          },
          "earAndHearing": {
            "type": "string"
          },
          "mouth": {
            "type": "string"
          },
          "throat": {
            "type": "string"
          },
          "noseAndSmell": {
            "type": "string"
          },
          "thorax": {
            "type": "string"
          },
          "lungs": {
            "type": "string"
          },
          "breast": {
            "type": "string"
          },
          "cardiovascular": {
            "type": "string"
          },
          "abdomen": {
            "type": "string"
          },
          "genitalia": {
            "type": "string"
          },
          "extremities": {
            "type": "string"
          },
          "nervousSystem": {
            "type": "string"
          },
          "musculoskeletal": {
            "type": "string"
          },
          "nutrition": {
            "type": "string"
          },
          "mentalStatus": {
            "type": "string"
          },
          "lifeActivity": {
            "type": "string"
          },
          "pain": {
            "type": "string"
          },
          "ivTherapy": {
            "type": "string"
          },
          "mobility": {
            "type": "string"
          },
          "transport": {
            "type": "string"
          },
          "supervisoryVisit": {
            "type": "string"
          },
          "other": {
            "type": "string"
          },
          "clinicalAssessment": {
            "type": "string"
          }
        },
        "required": [
          "doctorUuid",
          "patientUuid",
          "fullName",
          "cardNumber",
          "birthDate",
          "sex",
          "telephoneNumber",
          "reasonForConsultation",
          "objective",
          "diagnosis",
          "plan",
          "weight",
          "height",
          "bloodPressure",
          "heartRate",
          "imc",
          "respiratoryRate",
          "temperature",
          "cid",
          "ciap",
          "usedMedicalSupplies",
          "usedMedicines",
          "skin",
          "head",
          "hairScalp",
          "face",
          "neck",
          "eyes",
          "earAndHearing",
          "mouth",
          "throat",
          "noseAndSmell",
          "thorax",
          "lungs",
          "breast",
          "cardiovascular",
          "abdomen",
          "genitalia",
          "extremities",
          "nervousSystem",
          "musculoskeletal",
          "nutrition",
          "mentalStatus",
          "lifeActivity",
          "pain",
          "ivTherapy",
          "mobility",
          "transport",
          "supervisoryVisit",
          "other",
          "clinicalAssessment"
        ],
        "additionalProperties": false,
        "x-typescript-type": "NursingEvolutionHistory"
      },
      "MedicalEvolutionHomeCare": {
        "title": "MedicalEvolutionHomeCare",
        "type": "object",
        "properties": {
          "doctorUuid": {
            "type": "string"
          },
          "patientUuid": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "cardNumber": {
            "type": "string"
          },
          "birthDate": {
            "type": "string"
          },
          "age": {
            "type": "number"
          },
          "sex": {
            "type": "number"
          },
          "telephoneNumber": {
            "type": "string"
          },
          "address": {
            "type": "string"
          },
          "profession": {
            "type": "string"
          },
          "typeOfService": {
            "type": "number"
          },
          "multidisciplinaryAssessment": {
            "type": "string"
          },
          "showKATZForm": {
            "type": "boolean"
          },
          "showNEADForm": {
            "type": "boolean"
          },
          "showABEMIDForm": {
            "type": "boolean"
          },
          "avdIndex": {
            "type": "number"
          },
          "avdIndexOther": {
            "type": "string"
          },
          "notRequireAssistanceBathing": {
            "type": "boolean"
          },
          "requireAssistanceForAPartBathing": {
            "type": "boolean"
          },
          "requireAssistanceForOnePartBathing": {
            "type": "boolean"
          },
          "noAssistanceDressing": {
            "type": "boolean"
          },
          "assistPickClothesDressing": {
            "type": "boolean"
          },
          "assistDressing": {
            "type": "boolean"
          },
          "independentToileting": {
            "type": "boolean"
          },
          "needsAssistanceToileting": {
            "type": "boolean"
          },
          "notUsingBathroomToileting": {
            "type": "boolean"
          },
          "independentTransferring": {
            "type": "boolean"
          },
          "assistedTransferring": {
            "type": "boolean"
          },
          "dependentTransferring": {
            "type": "boolean"
          },
          "independentControlContinence": {
            "type": "boolean"
          },
          "assistedControlContinence": {
            "type": "boolean"
          },
          "registrationNumberNEAD": {
            "type": "string"
          },
          "insurance": {
            "type": "string"
          },
          "primaryDiagnosis": {
            "type": "string"
          },
          "secondaryDiagnosis": {
            "type": "string"
          },
          "medicalAssistant": {
            "type": "string"
          },
          "crm": {
            "type": "string"
          },
          "fullTimeCareNeeded": {
            "type": "boolean"
          },
          "riskInvolved": {
            "type": "boolean"
          },
          "networkCareIssue": {
            "type": "boolean"
          },
          "therapeuticSupport": {
            "type": "number"
          },
          "parenteralNutrition": {
            "type": "number"
          },
          "tracheostomy": {
            "type": "number"
          },
          "continuousMechanicalVentilation": {
            "type": "number"
          },
          "parenteral": {
            "type": "number"
          },
          "nutritionalStatus": {
            "type": "number"
          },
          "enteralFeeding": {
            "type": "number"
          },
          "katz": {
            "type": "number"
          },
          "hospitalizations": {
            "type": "number"
          },
          "upperAirwayAspirations": {
            "type": "number"
          },
          "wounds": {
            "type": "number"
          },
          "medications": {
            "type": "number"
          },
          "ventilatoryExercises": {
            "type": "number"
          },
          "oxygenTherapyUse": {
            "type": "number"
          },
          "levelOfConsciousness": {
            "type": "number"
          },
          "finalScore": {
            "type": "number"
          },
          "patientClassification": {
            "type": "number"
          },
          "woundCare": {
            "type": "boolean"
          },
          "parenteralMedications": {
            "type": "boolean"
          },
          "otherPrograms": {
            "type": "boolean"
          },
          "complexityLevel": {
            "type": "string"
          },
          "careSchedule24h": {
            "type": "string"
          },
          "CareSchedule12h": {
            "type": "string"
          },
          "CareSchedule6h": {
            "type": "string"
          },
          "ventilatorySupport": {
            "type": "number"
          },
          "chemotherapy": {
            "type": "number"
          },
          "skinLesions": {
            "type": "number"
          },
          "activitiesOfDailyLiving": {
            "type": "number"
          },
          "rehabilitationDependency": {
            "type": "number"
          },
          "nutritionalTherapy": {
            "type": "number"
          },
          "abemidInsurance": {
            "type": "string"
          },
          "abemidPrimaryDiagnosis": {
            "type": "string"
          },
          "abemidSecondaryDiagnosis": {
            "type": "string"
          },
          "ambemiddFinalScore": {
            "type": "number"
          },
          "abemidPatientClassification": {
            "type": "number"
          },
          "weight": {
            "type": "number"
          },
          "height": {
            "type": "number"
          },
          "bloodPressure": {
            "type": "string"
          },
          "heartRate": {
            "type": "number"
          },
          "imc": {
            "type": "number"
          },
          "respiratoryRate": {
            "type": "number"
          },
          "temperature": {
            "type": "number"
          },
          "oxygenSaturation": {
            "type": "number"
          },
          "capillaryBloodGlucose": {
            "type": "number"
          },
          "prescriptions": {
            "type": "string"
          },
          "fluidBalance": {
            "type": "string"
          },
          "bowelMovements": {
            "type": "string"
          },
          "bladderEliminations": {
            "type": "string"
          },
          "cidPrincipal": {
            "type": "string"
          },
          "descriptionCidPrincipal": {
            "type": "string"
          },
          "cid2": {
            "type": "string"
          },
          "descriptionCid2": {
            "type": "string"
          },
          "professional": {
            "type": "number"
          },
          "typeOfAttendance": {
            "type": "number"
          },
          "expectedDate": {
            "type": "string"
          },
          "status": {
            "type": "number"
          },
          "speciality": {
            "type": "string"
          },
          "reasonForReference": {
            "type": "string"
          },
          "counterReference": {
            "type": "string"
          },
          "code": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "quantity": {
            "type": "string"
          },
          "brazilianCommonDenomination": {
            "type": "string"
          },
          "brandName": {
            "type": "string"
          },
          "concentration": {
            "type": "string"
          },
          "pharmaceuticalForm": {
            "type": "string"
          },
          "holder": {
            "type": "string"
          },
          "register": {
            "type": "string"
          },
          "presentation": {
            "type": "string"
          },
          "therapeuticClass": {
            "type": "string"
          },
          "observations": {
            "type": "string"
          },
          "routeAndDosage": {
            "type": "string"
          },
          "doctorElectronicSignature": {
            "type": "string"
          },
          "laboratoryResults": {
            "type": "string"
          },
          "ImageResults": {
            "type": "string"
          },
          "cardiovascularRisk": {
            "type": "string"
          },
          "diabetesMellitus": {
            "type": "string"
          },
          "elderly": {
            "type": "string"
          },
          "riskOfOsteoporoticFracture": {
            "type": "string"
          },
          "creatinineClearance": {
            "type": "string"
          },
          "child": {
            "type": "string"
          },
          "pregnant": {
            "type": "string"
          },
          "indicators": {
            "type": "string"
          },
          "examResults": {
            "type": "string"
          },
          "reportsDocuments": {
            "type": "string"
          },
          "dateOfLastWeightMeasurement": {
            "type": "string"
          },
          "dateOfLastHeightMeasurement": {
            "type": "string"
          },
          "dateOfLastBloodPressureMeasurement": {
            "type": "string"
          },
          "dateOfLastHeartRateMeasurement": {
            "type": "string"
          },
          "dateOfLastRespiratoryRateMeasurement": {
            "type": "string"
          },
          "dateOfLastTemperatureMeasurement": {
            "type": "string"
          },
          "dateOfLastOxygenSaturationMeasurement": {
            "type": "string"
          },
          "dateOfLastFluidBalanceMeasurement": {
            "type": "string"
          },
          "dateOfLastBowelMovementsMeasurement": {
            "type": "string"
          },
          "dateOfLastBladderEliminationsMeasurement": {
            "type": "string"
          },
          "dateOfCapillaryBloodGlucoseMeasurement": {
            "type": "string"
          },
          "dateOfLastImcMeasurement": {
            "type": "string"
          },
          "reasonForConsultation": {
            "type": "string"
          },
          "objective": {
            "type": "string"
          },
          "evaluation": {
            "type": "string"
          },
          "plan": {
            "type": "string"
          },
          "considerations": {
            "type": "string"
          }
        },
        "required": [
          "doctorUuid",
          "patientUuid",
          "fullName",
          "cardNumber",
          "birthDate",
          "age",
          "sex",
          "telephoneNumber",
          "address",
          "profession",
          "typeOfService",
          "multidisciplinaryAssessment",
          "showKATZForm",
          "showNEADForm",
          "showABEMIDForm",
          "avdIndex",
          "avdIndexOther",
          "notRequireAssistanceBathing",
          "requireAssistanceForAPartBathing",
          "requireAssistanceForOnePartBathing",
          "noAssistanceDressing",
          "assistPickClothesDressing",
          "assistDressing",
          "independentToileting",
          "needsAssistanceToileting",
          "notUsingBathroomToileting",
          "independentTransferring",
          "assistedTransferring",
          "dependentTransferring",
          "independentControlContinence",
          "assistedControlContinence",
          "registrationNumberNEAD",
          "insurance",
          "primaryDiagnosis",
          "secondaryDiagnosis",
          "medicalAssistant",
          "crm",
          "fullTimeCareNeeded",
          "riskInvolved",
          "networkCareIssue",
          "therapeuticSupport",
          "parenteralNutrition",
          "tracheostomy",
          "continuousMechanicalVentilation",
          "parenteral",
          "nutritionalStatus",
          "enteralFeeding",
          "katz",
          "hospitalizations",
          "upperAirwayAspirations",
          "wounds",
          "medications",
          "ventilatoryExercises",
          "oxygenTherapyUse",
          "levelOfConsciousness",
          "finalScore",
          "patientClassification",
          "woundCare",
          "parenteralMedications",
          "otherPrograms",
          "complexityLevel",
          "careSchedule24h",
          "CareSchedule12h",
          "CareSchedule6h",
          "ventilatorySupport",
          "chemotherapy",
          "skinLesions",
          "activitiesOfDailyLiving",
          "rehabilitationDependency",
          "nutritionalTherapy",
          "abemidInsurance",
          "abemidPrimaryDiagnosis",
          "abemidSecondaryDiagnosis",
          "ambemiddFinalScore",
          "abemidPatientClassification",
          "weight",
          "height",
          "bloodPressure",
          "heartRate",
          "imc",
          "respiratoryRate",
          "temperature",
          "oxygenSaturation",
          "capillaryBloodGlucose",
          "prescriptions",
          "fluidBalance",
          "bowelMovements",
          "bladderEliminations",
          "cidPrincipal",
          "descriptionCidPrincipal",
          "cid2",
          "descriptionCid2",
          "professional",
          "typeOfAttendance",
          "expectedDate",
          "status",
          "speciality",
          "reasonForReference",
          "counterReference",
          "code",
          "description",
          "quantity",
          "brazilianCommonDenomination",
          "brandName",
          "concentration",
          "pharmaceuticalForm",
          "holder",
          "register",
          "presentation",
          "therapeuticClass",
          "observations",
          "routeAndDosage",
          "doctorElectronicSignature",
          "laboratoryResults",
          "ImageResults",
          "cardiovascularRisk",
          "diabetesMellitus",
          "elderly",
          "riskOfOsteoporoticFracture",
          "creatinineClearance",
          "child",
          "pregnant",
          "indicators",
          "examResults",
          "reportsDocuments",
          "dateOfLastWeightMeasurement",
          "dateOfLastHeightMeasurement",
          "dateOfLastBloodPressureMeasurement",
          "dateOfLastHeartRateMeasurement",
          "dateOfLastRespiratoryRateMeasurement",
          "dateOfLastTemperatureMeasurement",
          "dateOfLastOxygenSaturationMeasurement",
          "dateOfLastFluidBalanceMeasurement",
          "dateOfLastBowelMovementsMeasurement",
          "dateOfLastBladderEliminationsMeasurement",
          "dateOfCapillaryBloodGlucoseMeasurement",
          "dateOfLastImcMeasurement",
          "reasonForConsultation",
          "objective",
          "evaluation",
          "plan",
          "considerations"
        ],
        "additionalProperties": false
      },
      "Upload Medical Evolution Home Care Form": {
        "title": "Upload Medical Evolution Home Care Form",
        "type": "object",
        "description": "(tsType: MedicalEvolutionHomeCare, schemaOptions: { title: 'Upload Medical Evolution Home Care Form' })",
        "properties": {
          "doctorUuid": {
            "type": "string"
          },
          "patientUuid": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "cardNumber": {
            "type": "string"
          },
          "birthDate": {
            "type": "string"
          },
          "age": {
            "type": "number"
          },
          "sex": {
            "type": "number"
          },
          "telephoneNumber": {
            "type": "string"
          },
          "address": {
            "type": "string"
          },
          "profession": {
            "type": "string"
          },
          "typeOfService": {
            "type": "number"
          },
          "multidisciplinaryAssessment": {
            "type": "string"
          },
          "showKATZForm": {
            "type": "boolean"
          },
          "showNEADForm": {
            "type": "boolean"
          },
          "showABEMIDForm": {
            "type": "boolean"
          },
          "avdIndex": {
            "type": "number"
          },
          "avdIndexOther": {
            "type": "string"
          },
          "notRequireAssistanceBathing": {
            "type": "boolean"
          },
          "requireAssistanceForAPartBathing": {
            "type": "boolean"
          },
          "requireAssistanceForOnePartBathing": {
            "type": "boolean"
          },
          "noAssistanceDressing": {
            "type": "boolean"
          },
          "assistPickClothesDressing": {
            "type": "boolean"
          },
          "assistDressing": {
            "type": "boolean"
          },
          "independentToileting": {
            "type": "boolean"
          },
          "needsAssistanceToileting": {
            "type": "boolean"
          },
          "notUsingBathroomToileting": {
            "type": "boolean"
          },
          "independentTransferring": {
            "type": "boolean"
          },
          "assistedTransferring": {
            "type": "boolean"
          },
          "dependentTransferring": {
            "type": "boolean"
          },
          "independentControlContinence": {
            "type": "boolean"
          },
          "assistedControlContinence": {
            "type": "boolean"
          },
          "registrationNumberNEAD": {
            "type": "string"
          },
          "insurance": {
            "type": "string"
          },
          "primaryDiagnosis": {
            "type": "string"
          },
          "secondaryDiagnosis": {
            "type": "string"
          },
          "medicalAssistant": {
            "type": "string"
          },
          "crm": {
            "type": "string"
          },
          "fullTimeCareNeeded": {
            "type": "boolean"
          },
          "riskInvolved": {
            "type": "boolean"
          },
          "networkCareIssue": {
            "type": "boolean"
          },
          "therapeuticSupport": {
            "type": "number"
          },
          "parenteralNutrition": {
            "type": "number"
          },
          "tracheostomy": {
            "type": "number"
          },
          "continuousMechanicalVentilation": {
            "type": "number"
          },
          "parenteral": {
            "type": "number"
          },
          "nutritionalStatus": {
            "type": "number"
          },
          "enteralFeeding": {
            "type": "number"
          },
          "katz": {
            "type": "number"
          },
          "hospitalizations": {
            "type": "number"
          },
          "upperAirwayAspirations": {
            "type": "number"
          },
          "wounds": {
            "type": "number"
          },
          "medications": {
            "type": "number"
          },
          "ventilatoryExercises": {
            "type": "number"
          },
          "oxygenTherapyUse": {
            "type": "number"
          },
          "levelOfConsciousness": {
            "type": "number"
          },
          "finalScore": {
            "type": "number"
          },
          "patientClassification": {
            "type": "number"
          },
          "woundCare": {
            "type": "boolean"
          },
          "parenteralMedications": {
            "type": "boolean"
          },
          "otherPrograms": {
            "type": "boolean"
          },
          "complexityLevel": {
            "type": "string"
          },
          "careSchedule24h": {
            "type": "string"
          },
          "CareSchedule12h": {
            "type": "string"
          },
          "CareSchedule6h": {
            "type": "string"
          },
          "ventilatorySupport": {
            "type": "number"
          },
          "chemotherapy": {
            "type": "number"
          },
          "skinLesions": {
            "type": "number"
          },
          "activitiesOfDailyLiving": {
            "type": "number"
          },
          "rehabilitationDependency": {
            "type": "number"
          },
          "nutritionalTherapy": {
            "type": "number"
          },
          "abemidInsurance": {
            "type": "string"
          },
          "abemidPrimaryDiagnosis": {
            "type": "string"
          },
          "abemidSecondaryDiagnosis": {
            "type": "string"
          },
          "ambemiddFinalScore": {
            "type": "number"
          },
          "abemidPatientClassification": {
            "type": "number"
          },
          "weight": {
            "type": "number"
          },
          "height": {
            "type": "number"
          },
          "bloodPressure": {
            "type": "string"
          },
          "heartRate": {
            "type": "number"
          },
          "imc": {
            "type": "number"
          },
          "respiratoryRate": {
            "type": "number"
          },
          "temperature": {
            "type": "number"
          },
          "oxygenSaturation": {
            "type": "number"
          },
          "capillaryBloodGlucose": {
            "type": "number"
          },
          "prescriptions": {
            "type": "string"
          },
          "fluidBalance": {
            "type": "string"
          },
          "bowelMovements": {
            "type": "string"
          },
          "bladderEliminations": {
            "type": "string"
          },
          "cidPrincipal": {
            "type": "string"
          },
          "descriptionCidPrincipal": {
            "type": "string"
          },
          "cid2": {
            "type": "string"
          },
          "descriptionCid2": {
            "type": "string"
          },
          "professional": {
            "type": "number"
          },
          "typeOfAttendance": {
            "type": "number"
          },
          "expectedDate": {
            "type": "string"
          },
          "status": {
            "type": "number"
          },
          "speciality": {
            "type": "string"
          },
          "reasonForReference": {
            "type": "string"
          },
          "counterReference": {
            "type": "string"
          },
          "code": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "quantity": {
            "type": "string"
          },
          "brazilianCommonDenomination": {
            "type": "string"
          },
          "brandName": {
            "type": "string"
          },
          "concentration": {
            "type": "string"
          },
          "pharmaceuticalForm": {
            "type": "string"
          },
          "holder": {
            "type": "string"
          },
          "register": {
            "type": "string"
          },
          "presentation": {
            "type": "string"
          },
          "therapeuticClass": {
            "type": "string"
          },
          "observations": {
            "type": "string"
          },
          "routeAndDosage": {
            "type": "string"
          },
          "doctorElectronicSignature": {
            "type": "string"
          },
          "laboratoryResults": {
            "type": "string"
          },
          "ImageResults": {
            "type": "string"
          },
          "cardiovascularRisk": {
            "type": "string"
          },
          "diabetesMellitus": {
            "type": "string"
          },
          "elderly": {
            "type": "string"
          },
          "riskOfOsteoporoticFracture": {
            "type": "string"
          },
          "creatinineClearance": {
            "type": "string"
          },
          "child": {
            "type": "string"
          },
          "pregnant": {
            "type": "string"
          },
          "indicators": {
            "type": "string"
          },
          "examResults": {
            "type": "string"
          },
          "reportsDocuments": {
            "type": "string"
          },
          "dateOfLastWeightMeasurement": {
            "type": "string"
          },
          "dateOfLastHeightMeasurement": {
            "type": "string"
          },
          "dateOfLastBloodPressureMeasurement": {
            "type": "string"
          },
          "dateOfLastHeartRateMeasurement": {
            "type": "string"
          },
          "dateOfLastRespiratoryRateMeasurement": {
            "type": "string"
          },
          "dateOfLastTemperatureMeasurement": {
            "type": "string"
          },
          "dateOfLastOxygenSaturationMeasurement": {
            "type": "string"
          },
          "dateOfLastFluidBalanceMeasurement": {
            "type": "string"
          },
          "dateOfLastBowelMovementsMeasurement": {
            "type": "string"
          },
          "dateOfLastBladderEliminationsMeasurement": {
            "type": "string"
          },
          "dateOfCapillaryBloodGlucoseMeasurement": {
            "type": "string"
          },
          "dateOfLastImcMeasurement": {
            "type": "string"
          },
          "reasonForConsultation": {
            "type": "string"
          },
          "objective": {
            "type": "string"
          },
          "evaluation": {
            "type": "string"
          },
          "plan": {
            "type": "string"
          },
          "considerations": {
            "type": "string"
          }
        },
        "required": [
          "doctorUuid",
          "patientUuid",
          "fullName",
          "cardNumber",
          "birthDate",
          "age",
          "sex",
          "telephoneNumber",
          "address",
          "profession",
          "typeOfService",
          "multidisciplinaryAssessment",
          "showKATZForm",
          "showNEADForm",
          "showABEMIDForm",
          "avdIndex",
          "avdIndexOther",
          "notRequireAssistanceBathing",
          "requireAssistanceForAPartBathing",
          "requireAssistanceForOnePartBathing",
          "noAssistanceDressing",
          "assistPickClothesDressing",
          "assistDressing",
          "independentToileting",
          "needsAssistanceToileting",
          "notUsingBathroomToileting",
          "independentTransferring",
          "assistedTransferring",
          "dependentTransferring",
          "independentControlContinence",
          "assistedControlContinence",
          "registrationNumberNEAD",
          "insurance",
          "primaryDiagnosis",
          "secondaryDiagnosis",
          "medicalAssistant",
          "crm",
          "fullTimeCareNeeded",
          "riskInvolved",
          "networkCareIssue",
          "therapeuticSupport",
          "parenteralNutrition",
          "tracheostomy",
          "continuousMechanicalVentilation",
          "parenteral",
          "nutritionalStatus",
          "enteralFeeding",
          "katz",
          "hospitalizations",
          "upperAirwayAspirations",
          "wounds",
          "medications",
          "ventilatoryExercises",
          "oxygenTherapyUse",
          "levelOfConsciousness",
          "finalScore",
          "patientClassification",
          "woundCare",
          "parenteralMedications",
          "otherPrograms",
          "complexityLevel",
          "careSchedule24h",
          "CareSchedule12h",
          "CareSchedule6h",
          "ventilatorySupport",
          "chemotherapy",
          "skinLesions",
          "activitiesOfDailyLiving",
          "rehabilitationDependency",
          "nutritionalTherapy",
          "abemidInsurance",
          "abemidPrimaryDiagnosis",
          "abemidSecondaryDiagnosis",
          "ambemiddFinalScore",
          "abemidPatientClassification",
          "weight",
          "height",
          "bloodPressure",
          "heartRate",
          "imc",
          "respiratoryRate",
          "temperature",
          "oxygenSaturation",
          "capillaryBloodGlucose",
          "prescriptions",
          "fluidBalance",
          "bowelMovements",
          "bladderEliminations",
          "cidPrincipal",
          "descriptionCidPrincipal",
          "cid2",
          "descriptionCid2",
          "professional",
          "typeOfAttendance",
          "expectedDate",
          "status",
          "speciality",
          "reasonForReference",
          "counterReference",
          "code",
          "description",
          "quantity",
          "brazilianCommonDenomination",
          "brandName",
          "concentration",
          "pharmaceuticalForm",
          "holder",
          "register",
          "presentation",
          "therapeuticClass",
          "observations",
          "routeAndDosage",
          "doctorElectronicSignature",
          "laboratoryResults",
          "ImageResults",
          "cardiovascularRisk",
          "diabetesMellitus",
          "elderly",
          "riskOfOsteoporoticFracture",
          "creatinineClearance",
          "child",
          "pregnant",
          "indicators",
          "examResults",
          "reportsDocuments",
          "dateOfLastWeightMeasurement",
          "dateOfLastHeightMeasurement",
          "dateOfLastBloodPressureMeasurement",
          "dateOfLastHeartRateMeasurement",
          "dateOfLastRespiratoryRateMeasurement",
          "dateOfLastTemperatureMeasurement",
          "dateOfLastOxygenSaturationMeasurement",
          "dateOfLastFluidBalanceMeasurement",
          "dateOfLastBowelMovementsMeasurement",
          "dateOfLastBladderEliminationsMeasurement",
          "dateOfCapillaryBloodGlucoseMeasurement",
          "dateOfLastImcMeasurement",
          "reasonForConsultation",
          "objective",
          "evaluation",
          "plan",
          "considerations"
        ],
        "additionalProperties": false,
        "x-typescript-type": "MedicalEvolutionHomeCare"
      },
      "MedicalEvolutionAps": {
        "title": "MedicalEvolutionAps",
        "type": "object",
        "properties": {
          "doctorUuid": {
            "type": "string"
          },
          "patientUuid": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "cardNumber": {
            "type": "string"
          },
          "birthDate": {
            "type": "string"
          },
          "age": {
            "type": "number"
          },
          "sex": {
            "type": "number"
          },
          "telephoneNumber": {
            "type": "string"
          },
          "address": {
            "type": "string"
          },
          "profession": {
            "type": "string"
          },
          "typeOfService": {
            "type": "number"
          },
          "reasonForConsultation": {
            "type": "string"
          },
          "objective": {
            "type": "string"
          },
          "evaluation": {
            "type": "string"
          },
          "plan": {
            "type": "string"
          },
          "weight": {
            "type": "number"
          },
          "height": {
            "type": "number"
          },
          "bloodPressure": {
            "type": "string"
          },
          "heartRate": {
            "type": "number"
          },
          "imc": {
            "type": "number"
          },
          "respiratoryRate": {
            "type": "number"
          },
          "temperature": {
            "type": "number"
          },
          "oxygenSaturation": {
            "type": "number"
          },
          "capillaryBloodGlucose": {
            "type": "number"
          },
          "cidPrincipal": {
            "type": "string"
          },
          "descriptionCidPrincipal": {
            "type": "string"
          },
          "cid2": {
            "type": "string"
          },
          "descriptionCid2": {
            "type": "string"
          },
          "cid3": {
            "type": "string"
          },
          "descriptionCid3": {
            "type": "string"
          },
          "ciap1": {
            "type": "string"
          },
          "descriptionCiap1": {
            "type": "string"
          },
          "ciap2": {
            "type": "string"
          },
          "descriptionCiap2": {
            "type": "string"
          },
          "ciap3": {
            "type": "string"
          },
          "descriptionCiap3": {
            "type": "string"
          },
          "professional": {
            "type": "number"
          },
          "typeOfAttendance": {
            "type": "number"
          },
          "expectedDate": {
            "type": "string"
          },
          "status": {
            "type": "number"
          },
          "speciality": {
            "type": "string"
          },
          "reasonForReference": {
            "type": "string"
          },
          "counterReference": {
            "type": "string"
          },
          "code": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "brazilianCommonDenomination": {
            "type": "string"
          },
          "brandName": {
            "type": "string"
          },
          "concentration": {
            "type": "string"
          },
          "pharmaceuticalForm": {
            "type": "string"
          },
          "holder": {
            "type": "string"
          },
          "register": {
            "type": "string"
          },
          "presentation": {
            "type": "string"
          },
          "therapeuticClass": {
            "type": "string"
          },
          "observations": {
            "type": "string"
          },
          "routeAndDosage": {
            "type": "string"
          },
          "doctorElectronicSignature": {
            "type": "string"
          },
          "laboratoryResults": {
            "type": "string"
          },
          "ImageResults": {
            "type": "string"
          },
          "cardiovascularRisk": {
            "type": "string"
          },
          "diabetesMellitus": {
            "type": "string"
          },
          "elderly": {
            "type": "string"
          },
          "riskOfOsteoporoticFracture": {
            "type": "string"
          },
          "creatinineClearance": {
            "type": "string"
          },
          "child": {
            "type": "string"
          },
          "pregnant": {
            "type": "string"
          },
          "showFraminghamScale": {
            "type": "boolean"
          },
          "showFindriscScale": {
            "type": "boolean"
          },
          "showElderlyScale": {
            "type": "boolean"
          },
          "waistCircumference": {
            "type": "number"
          },
          "treatmentForHypertension": {
            "type": "boolean"
          },
          "highGlucose": {
            "type": "boolean"
          },
          "familyHistoryOfDiabetes": {
            "type": "string",
            "enum": [
              "none",
              "second",
              "first",
              ""
            ]
          },
          "physicalActivity": {
            "type": "boolean"
          },
          "eatVestablesFuits": {
            "type": "boolean"
          },
          "findriscScore": {
            "type": "number"
          },
          "smoker": {
            "type": "boolean"
          },
          "totalCholesterol": {
            "type": "number"
          },
          "hdlCholesterol": {
            "type": "number"
          },
          "systolicBloodPressure": {
            "type": "number"
          },
          "framinghamScore": {
            "type": "number"
          },
          "cardiovascularRiskInTenYears": {
            "type": "number"
          },
          "healthSelfPerception": {
            "type": "boolean"
          },
          "shoppingDifficulty": {
            "type": "boolean"
          },
          "moneyDifficulty": {
            "type": "boolean"
          },
          "houseworkDifficulty": {
            "type": "boolean"
          },
          "bathingDifficulty": {
            "type": "boolean"
          },
          "familyReportedForgetfulness": {
            "type": "boolean"
          },
          "memoryWorsening": {
            "type": "boolean"
          },
          "dailyImpact": {
            "type": "boolean"
          },
          "sadness": {
            "type": "boolean"
          },
          "lossOfInterest": {
            "type": "boolean"
          },
          "armLiftDifficulty": {
            "type": "boolean"
          },
          "smallObjectDifficulty": {
            "type": "boolean"
          },
          "weightloss": {
            "type": "boolean"
          },
          "calfCircumference": {
            "type": "boolean"
          },
          "speedTest": {
            "type": "boolean"
          },
          "walkingDifficulty": {
            "type": "boolean"
          },
          "frequentFalls": {
            "type": "boolean"
          },
          "incontinence": {
            "type": "boolean"
          },
          "visionProblems": {
            "type": "boolean"
          },
          "hearingProblems": {
            "type": "boolean"
          },
          "multipleComorbidities": {
            "type": "boolean"
          },
          "IVCF20Score": {
            "type": "number"
          },
          "indicators": {
            "type": "string"
          },
          "examResults": {
            "type": "string"
          },
          "reportsDocuments": {
            "type": "string"
          }
        },
        "required": [
          "doctorUuid",
          "patientUuid",
          "fullName",
          "cardNumber",
          "birthDate",
          "age",
          "sex",
          "telephoneNumber",
          "address",
          "profession",
          "typeOfService",
          "reasonForConsultation",
          "objective",
          "evaluation",
          "plan",
          "weight",
          "height",
          "bloodPressure",
          "heartRate",
          "imc",
          "respiratoryRate",
          "temperature",
          "oxygenSaturation",
          "capillaryBloodGlucose",
          "cidPrincipal",
          "descriptionCidPrincipal",
          "cid2",
          "descriptionCid2",
          "cid3",
          "descriptionCid3",
          "ciap1",
          "descriptionCiap1",
          "ciap2",
          "descriptionCiap2",
          "ciap3",
          "descriptionCiap3",
          "professional",
          "typeOfAttendance",
          "expectedDate",
          "status",
          "speciality",
          "reasonForReference",
          "counterReference",
          "code",
          "description",
          "quantity",
          "brazilianCommonDenomination",
          "brandName",
          "concentration",
          "pharmaceuticalForm",
          "holder",
          "register",
          "presentation",
          "therapeuticClass",
          "observations",
          "routeAndDosage",
          "doctorElectronicSignature",
          "laboratoryResults",
          "ImageResults",
          "cardiovascularRisk",
          "diabetesMellitus",
          "elderly",
          "riskOfOsteoporoticFracture",
          "creatinineClearance",
          "child",
          "pregnant",
          "showFraminghamScale",
          "showFindriscScale",
          "showElderlyScale",
          "waistCircumference",
          "treatmentForHypertension",
          "highGlucose",
          "familyHistoryOfDiabetes",
          "physicalActivity",
          "eatVestablesFuits",
          "findriscScore",
          "smoker",
          "totalCholesterol",
          "hdlCholesterol",
          "systolicBloodPressure",
          "framinghamScore",
          "cardiovascularRiskInTenYears",
          "healthSelfPerception",
          "shoppingDifficulty",
          "moneyDifficulty",
          "houseworkDifficulty",
          "bathingDifficulty",
          "familyReportedForgetfulness",
          "memoryWorsening",
          "dailyImpact",
          "sadness",
          "lossOfInterest",
          "armLiftDifficulty",
          "smallObjectDifficulty",
          "weightloss",
          "calfCircumference",
          "speedTest",
          "walkingDifficulty",
          "frequentFalls",
          "incontinence",
          "visionProblems",
          "hearingProblems",
          "multipleComorbidities",
          "IVCF20Score",
          "indicators",
          "examResults",
          "reportsDocuments"
        ],
        "additionalProperties": false
      },
      "Upload Medical Evolution Aps Form": {
        "title": "Upload Medical Evolution Aps Form",
        "type": "object",
        "description": "(tsType: MedicalEvolutionAps, schemaOptions: { title: 'Upload Medical Evolution Aps Form' })",
        "properties": {
          "doctorUuid": {
            "type": "string"
          },
          "patientUuid": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "cardNumber": {
            "type": "string"
          },
          "birthDate": {
            "type": "string"
          },
          "age": {
            "type": "number"
          },
          "sex": {
            "type": "number"
          },
          "telephoneNumber": {
            "type": "string"
          },
          "address": {
            "type": "string"
          },
          "profession": {
            "type": "string"
          },
          "typeOfService": {
            "type": "number"
          },
          "reasonForConsultation": {
            "type": "string"
          },
          "objective": {
            "type": "string"
          },
          "evaluation": {
            "type": "string"
          },
          "plan": {
            "type": "string"
          },
          "weight": {
            "type": "number"
          },
          "height": {
            "type": "number"
          },
          "bloodPressure": {
            "type": "string"
          },
          "heartRate": {
            "type": "number"
          },
          "imc": {
            "type": "number"
          },
          "respiratoryRate": {
            "type": "number"
          },
          "temperature": {
            "type": "number"
          },
          "oxygenSaturation": {
            "type": "number"
          },
          "capillaryBloodGlucose": {
            "type": "number"
          },
          "cidPrincipal": {
            "type": "string"
          },
          "descriptionCidPrincipal": {
            "type": "string"
          },
          "cid2": {
            "type": "string"
          },
          "descriptionCid2": {
            "type": "string"
          },
          "cid3": {
            "type": "string"
          },
          "descriptionCid3": {
            "type": "string"
          },
          "ciap1": {
            "type": "string"
          },
          "descriptionCiap1": {
            "type": "string"
          },
          "ciap2": {
            "type": "string"
          },
          "descriptionCiap2": {
            "type": "string"
          },
          "ciap3": {
            "type": "string"
          },
          "descriptionCiap3": {
            "type": "string"
          },
          "professional": {
            "type": "number"
          },
          "typeOfAttendance": {
            "type": "number"
          },
          "expectedDate": {
            "type": "string"
          },
          "status": {
            "type": "number"
          },
          "speciality": {
            "type": "string"
          },
          "reasonForReference": {
            "type": "string"
          },
          "counterReference": {
            "type": "string"
          },
          "code": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "brazilianCommonDenomination": {
            "type": "string"
          },
          "brandName": {
            "type": "string"
          },
          "concentration": {
            "type": "string"
          },
          "pharmaceuticalForm": {
            "type": "string"
          },
          "holder": {
            "type": "string"
          },
          "register": {
            "type": "string"
          },
          "presentation": {
            "type": "string"
          },
          "therapeuticClass": {
            "type": "string"
          },
          "observations": {
            "type": "string"
          },
          "routeAndDosage": {
            "type": "string"
          },
          "doctorElectronicSignature": {
            "type": "string"
          },
          "laboratoryResults": {
            "type": "string"
          },
          "ImageResults": {
            "type": "string"
          },
          "cardiovascularRisk": {
            "type": "string"
          },
          "diabetesMellitus": {
            "type": "string"
          },
          "elderly": {
            "type": "string"
          },
          "riskOfOsteoporoticFracture": {
            "type": "string"
          },
          "creatinineClearance": {
            "type": "string"
          },
          "child": {
            "type": "string"
          },
          "pregnant": {
            "type": "string"
          },
          "showFraminghamScale": {
            "type": "boolean"
          },
          "showFindriscScale": {
            "type": "boolean"
          },
          "showElderlyScale": {
            "type": "boolean"
          },
          "waistCircumference": {
            "type": "number"
          },
          "treatmentForHypertension": {
            "type": "boolean"
          },
          "highGlucose": {
            "type": "boolean"
          },
          "familyHistoryOfDiabetes": {
            "type": "string",
            "enum": [
              "none",
              "second",
              "first",
              ""
            ]
          },
          "physicalActivity": {
            "type": "boolean"
          },
          "eatVestablesFuits": {
            "type": "boolean"
          },
          "findriscScore": {
            "type": "number"
          },
          "smoker": {
            "type": "boolean"
          },
          "totalCholesterol": {
            "type": "number"
          },
          "hdlCholesterol": {
            "type": "number"
          },
          "systolicBloodPressure": {
            "type": "number"
          },
          "framinghamScore": {
            "type": "number"
          },
          "cardiovascularRiskInTenYears": {
            "type": "number"
          },
          "healthSelfPerception": {
            "type": "boolean"
          },
          "shoppingDifficulty": {
            "type": "boolean"
          },
          "moneyDifficulty": {
            "type": "boolean"
          },
          "houseworkDifficulty": {
            "type": "boolean"
          },
          "bathingDifficulty": {
            "type": "boolean"
          },
          "familyReportedForgetfulness": {
            "type": "boolean"
          },
          "memoryWorsening": {
            "type": "boolean"
          },
          "dailyImpact": {
            "type": "boolean"
          },
          "sadness": {
            "type": "boolean"
          },
          "lossOfInterest": {
            "type": "boolean"
          },
          "armLiftDifficulty": {
            "type": "boolean"
          },
          "smallObjectDifficulty": {
            "type": "boolean"
          },
          "weightloss": {
            "type": "boolean"
          },
          "calfCircumference": {
            "type": "boolean"
          },
          "speedTest": {
            "type": "boolean"
          },
          "walkingDifficulty": {
            "type": "boolean"
          },
          "frequentFalls": {
            "type": "boolean"
          },
          "incontinence": {
            "type": "boolean"
          },
          "visionProblems": {
            "type": "boolean"
          },
          "hearingProblems": {
            "type": "boolean"
          },
          "multipleComorbidities": {
            "type": "boolean"
          },
          "IVCF20Score": {
            "type": "number"
          },
          "indicators": {
            "type": "string"
          },
          "examResults": {
            "type": "string"
          },
          "reportsDocuments": {
            "type": "string"
          }
        },
        "required": [
          "doctorUuid",
          "patientUuid",
          "fullName",
          "cardNumber",
          "birthDate",
          "age",
          "sex",
          "telephoneNumber",
          "address",
          "profession",
          "typeOfService",
          "reasonForConsultation",
          "objective",
          "evaluation",
          "plan",
          "weight",
          "height",
          "bloodPressure",
          "heartRate",
          "imc",
          "respiratoryRate",
          "temperature",
          "oxygenSaturation",
          "capillaryBloodGlucose",
          "cidPrincipal",
          "descriptionCidPrincipal",
          "cid2",
          "descriptionCid2",
          "cid3",
          "descriptionCid3",
          "ciap1",
          "descriptionCiap1",
          "ciap2",
          "descriptionCiap2",
          "ciap3",
          "descriptionCiap3",
          "professional",
          "typeOfAttendance",
          "expectedDate",
          "status",
          "speciality",
          "reasonForReference",
          "counterReference",
          "code",
          "description",
          "quantity",
          "brazilianCommonDenomination",
          "brandName",
          "concentration",
          "pharmaceuticalForm",
          "holder",
          "register",
          "presentation",
          "therapeuticClass",
          "observations",
          "routeAndDosage",
          "doctorElectronicSignature",
          "laboratoryResults",
          "ImageResults",
          "cardiovascularRisk",
          "diabetesMellitus",
          "elderly",
          "riskOfOsteoporoticFracture",
          "creatinineClearance",
          "child",
          "pregnant",
          "showFraminghamScale",
          "showFindriscScale",
          "showElderlyScale",
          "waistCircumference",
          "treatmentForHypertension",
          "highGlucose",
          "familyHistoryOfDiabetes",
          "physicalActivity",
          "eatVestablesFuits",
          "findriscScore",
          "smoker",
          "totalCholesterol",
          "hdlCholesterol",
          "systolicBloodPressure",
          "framinghamScore",
          "cardiovascularRiskInTenYears",
          "healthSelfPerception",
          "shoppingDifficulty",
          "moneyDifficulty",
          "houseworkDifficulty",
          "bathingDifficulty",
          "familyReportedForgetfulness",
          "memoryWorsening",
          "dailyImpact",
          "sadness",
          "lossOfInterest",
          "armLiftDifficulty",
          "smallObjectDifficulty",
          "weightloss",
          "calfCircumference",
          "speedTest",
          "walkingDifficulty",
          "frequentFalls",
          "incontinence",
          "visionProblems",
          "hearingProblems",
          "multipleComorbidities",
          "IVCF20Score",
          "indicators",
          "examResults",
          "reportsDocuments"
        ],
        "additionalProperties": false,
        "x-typescript-type": "MedicalEvolutionAps"
      },
      "ProntuarioHomeCare": {
        "title": "ProntuarioHomeCare",
        "type": "object",
        "properties": {
          "doctorUuid": {
            "type": "string"
          },
          "patientUuid": {
            "type": "string"
          },
          "prescriptions": {
            "type": "string"
          },
          "procedures": {
            "type": "string"
          },
          "vitals": {
            "type": "string"
          },
          "observations": {
            "type": "string"
          },
          "fluidBalance": {
            "type": "string"
          },
          "fluidBalanceObs": {
            "type": "string"
          },
          "fluidBalanceSubTotalDay": {
            "type": "string"
          },
          "fluidBalanceSubTotalNight": {
            "type": "string"
          },
          "fluidBalanceTotal": {
            "type": "string"
          },
          "intestinalEliminations": {
            "type": "object"
          },
          "vesicalEliminations": {
            "type": "object"
          },
          "eliminationsObs": {
            "type": "string"
          },
          "nursingPrescription": {
            "type": "string"
          },
          "nursingPrescriptionNotes": {
            "type": "string"
          },
          "shiftNotesDay": {
            "type": "string"
          },
          "shiftNotesNight": {
            "type": "string"
          },
          "nursingNotesDay": {
            "type": "string"
          },
          "nursingNotesNight": {
            "type": "string"
          },
          "rehabActivities": {
            "type": "string"
          }
        },
        "required": [
          "doctorUuid",
          "patientUuid",
          "prescriptions",
          "procedures",
          "vitals",
          "fluidBalance",
          "fluidBalanceObs",
          "intestinalEliminations",
          "vesicalEliminations",
          "nursingPrescription",
          "rehabActivities"
        ],
        "additionalProperties": false
      },
      "Upload Prontuario Home Care Form": {
        "title": "Upload Prontuario Home Care Form",
        "type": "object",
        "description": "(tsType: ProntuarioHomeCare, schemaOptions: { title: 'Upload Prontuario Home Care Form' })",
        "properties": {
          "doctorUuid": {
            "type": "string"
          },
          "patientUuid": {
            "type": "string"
          },
          "prescriptions": {
            "type": "string"
          },
          "procedures": {
            "type": "string"
          },
          "vitals": {
            "type": "string"
          },
          "observations": {
            "type": "string"
          },
          "fluidBalance": {
            "type": "string"
          },
          "fluidBalanceObs": {
            "type": "string"
          },
          "fluidBalanceSubTotalDay": {
            "type": "string"
          },
          "fluidBalanceSubTotalNight": {
            "type": "string"
          },
          "fluidBalanceTotal": {
            "type": "string"
          },
          "intestinalEliminations": {
            "type": "object"
          },
          "vesicalEliminations": {
            "type": "object"
          },
          "eliminationsObs": {
            "type": "string"
          },
          "nursingPrescription": {
            "type": "string"
          },
          "nursingPrescriptionNotes": {
            "type": "string"
          },
          "shiftNotesDay": {
            "type": "string"
          },
          "shiftNotesNight": {
            "type": "string"
          },
          "nursingNotesDay": {
            "type": "string"
          },
          "nursingNotesNight": {
            "type": "string"
          },
          "rehabActivities": {
            "type": "string"
          }
        },
        "required": [
          "doctorUuid",
          "patientUuid",
          "prescriptions",
          "procedures",
          "vitals",
          "fluidBalance",
          "fluidBalanceObs",
          "intestinalEliminations",
          "vesicalEliminations",
          "nursingPrescription",
          "rehabActivities"
        ],
        "additionalProperties": false,
        "x-typescript-type": "ProntuarioHomeCare"
      },
      "MedicalReferrals": {
        "title": "MedicalReferrals",
        "type": "object",
        "properties": {
          "patientUuid": {
            "type": "string"
          },
          "doctorUuid": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "birthDate": {
            "type": "string"
          },
          "age": {
            "type": "number"
          },
          "apsProfessionalName": {
            "type": "string"
          },
          "referralDate": {
            "type": "string"
          },
          "registrationNumber": {
            "type": "string"
          },
          "specialty": {
            "type": "number"
          },
          "reasonForReferral": {
            "type": "string"
          },
          "counterReferral": {
            "type": "string"
          },
          "referralType": {
            "type": "number"
          }
        },
        "required": [
          "patientUuid",
          "doctorUuid",
          "fullName",
          "birthDate",
          "age",
          "apsProfessionalName",
          "referralDate",
          "registrationNumber",
          "specialty",
          "reasonForReferral",
          "counterReferral",
          "referralType"
        ],
        "additionalProperties": false
      },
      "Upload Medical Referrals Form": {
        "title": "Upload Medical Referrals Form",
        "type": "object",
        "description": "(tsType: MedicalReferrals, schemaOptions: { title: 'Upload Medical Referrals Form' })",
        "properties": {
          "patientUuid": {
            "type": "string"
          },
          "doctorUuid": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "birthDate": {
            "type": "string"
          },
          "age": {
            "type": "number"
          },
          "apsProfessionalName": {
            "type": "string"
          },
          "referralDate": {
            "type": "string"
          },
          "registrationNumber": {
            "type": "string"
          },
          "specialty": {
            "type": "number"
          },
          "reasonForReferral": {
            "type": "string"
          },
          "counterReferral": {
            "type": "string"
          },
          "referralType": {
            "type": "number"
          }
        },
        "required": [
          "patientUuid",
          "doctorUuid",
          "fullName",
          "birthDate",
          "age",
          "apsProfessionalName",
          "referralDate",
          "registrationNumber",
          "specialty",
          "reasonForReferral",
          "counterReferral",
          "referralType"
        ],
        "additionalProperties": false,
        "x-typescript-type": "MedicalReferrals"
      },
      "ProfessionalServiceGuideForm": {
        "title": "ProfessionalServiceGuideForm",
        "type": "object",
        "properties": {
          "patientUuid": {
            "type": "string"
          },
          "doctorUuid": {
            "type": "string"
          },
          "ansRegistry": {
            "type": "string"
          },
          "guideNoProvider": {
            "type": "string"
          },
          "mainGuideNumber": {
            "type": "string"
          },
          "authorizationDate": {
            "type": "string"
          },
          "password": {
            "type": "string"
          },
          "passwordValidityDate": {
            "type": "string"
          },
          "operatorGuideNumber": {
            "type": "string"
          },
          "cardNumber": {
            "type": "string"
          },
          "cardValidity": {
            "type": "string"
          },
          "beneficiaryName": {
            "type": "string"
          },
          "nationalHealthCard": {
            "type": "string"
          },
          "newbornCare": {
            "type": "string"
          },
          "requesterOperatorCode": {
            "type": "string"
          },
          "requesterContractedName": {
            "type": "string"
          },
          "requesterProfessionalName": {
            "type": "string"
          },
          "professionalCouncil": {
            "type": "string"
          },
          "councilNumber": {
            "type": "string"
          },
          "uf": {
            "type": "string"
          },
          "cboCode": {
            "type": "string"
          },
          "requesterSignature": {
            "type": "string"
          },
          "attendanceCharacter": {
            "type": "string"
          },
          "requestDate": {
            "type": "string"
          },
          "clinicalIndication": {
            "type": "string"
          },
          "requests": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "table": {
            "type": "string"
          },
          "procedureCode": {
            "type": "string"
          },
          "procedureDescription": {
            "type": "string"
          },
          "requestedQuantity": {
            "type": "string"
          },
          "authorizedQuantity": {
            "type": "string"
          },
          "executorOperatorCode": {
            "type": "string"
          },
          "executorContractedName": {
            "type": "string"
          },
          "executorCNESCode": {
            "type": "string"
          },
          "attendanceType": {
            "type": "string"
          },
          "accidentIndication": {
            "type": "string"
          },
          "consultationType": {
            "type": "string"
          },
          "attendanceClosureReason": {
            "type": "string"
          },
          "proceduresExecution": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "executors": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "executorsExtra": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "observationJustification": {
            "type": "string"
          },
          "totalProcedures": {
            "type": "string"
          },
          "totalFeesRentals": {
            "type": "string"
          },
          "totalMaterials": {
            "type": "string"
          },
          "totalOPME": {
            "type": "string"
          },
          "totalMedicines": {
            "type": "string"
          },
          "totalMedicalGases": {
            "type": "string"
          },
          "grandTotal": {
            "type": "string"
          },
          "authorizationResponsibleSignature": {
            "type": "string"
          },
          "contractedSignature": {
            "type": "string"
          },
          "beneficiaryResponsibleSignature": {
            "type": "string"
          }
        },
        "required": [
          "patientUuid",
          "doctorUuid"
        ],
        "additionalProperties": false
      },
      "Upload Professional Service Guide Form": {
        "title": "Upload Professional Service Guide Form",
        "type": "object",
        "description": "(tsType: ProfessionalServiceGuideForm, schemaOptions: { title: 'Upload Professional Service Guide Form' })",
        "properties": {
          "patientUuid": {
            "type": "string"
          },
          "doctorUuid": {
            "type": "string"
          },
          "ansRegistry": {
            "type": "string"
          },
          "guideNoProvider": {
            "type": "string"
          },
          "mainGuideNumber": {
            "type": "string"
          },
          "authorizationDate": {
            "type": "string"
          },
          "password": {
            "type": "string"
          },
          "passwordValidityDate": {
            "type": "string"
          },
          "operatorGuideNumber": {
            "type": "string"
          },
          "cardNumber": {
            "type": "string"
          },
          "cardValidity": {
            "type": "string"
          },
          "beneficiaryName": {
            "type": "string"
          },
          "nationalHealthCard": {
            "type": "string"
          },
          "newbornCare": {
            "type": "string"
          },
          "requesterOperatorCode": {
            "type": "string"
          },
          "requesterContractedName": {
            "type": "string"
          },
          "requesterProfessionalName": {
            "type": "string"
          },
          "professionalCouncil": {
            "type": "string"
          },
          "councilNumber": {
            "type": "string"
          },
          "uf": {
            "type": "string"
          },
          "cboCode": {
            "type": "string"
          },
          "requesterSignature": {
            "type": "string"
          },
          "attendanceCharacter": {
            "type": "string"
          },
          "requestDate": {
            "type": "string"
          },
          "clinicalIndication": {
            "type": "string"
          },
          "requests": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "table": {
            "type": "string"
          },
          "procedureCode": {
            "type": "string"
          },
          "procedureDescription": {
            "type": "string"
          },
          "requestedQuantity": {
            "type": "string"
          },
          "authorizedQuantity": {
            "type": "string"
          },
          "executorOperatorCode": {
            "type": "string"
          },
          "executorContractedName": {
            "type": "string"
          },
          "executorCNESCode": {
            "type": "string"
          },
          "attendanceType": {
            "type": "string"
          },
          "accidentIndication": {
            "type": "string"
          },
          "consultationType": {
            "type": "string"
          },
          "attendanceClosureReason": {
            "type": "string"
          },
          "proceduresExecution": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "executors": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "executorsExtra": {
            "type": "array",
            "items": {
              "type": "object"
            }
          },
          "observationJustification": {
            "type": "string"
          },
          "totalProcedures": {
            "type": "string"
          },
          "totalFeesRentals": {
            "type": "string"
          },
          "totalMaterials": {
            "type": "string"
          },
          "totalOPME": {
            "type": "string"
          },
          "totalMedicines": {
            "type": "string"
          },
          "totalMedicalGases": {
            "type": "string"
          },
          "grandTotal": {
            "type": "string"
          },
          "authorizationResponsibleSignature": {
            "type": "string"
          },
          "contractedSignature": {
            "type": "string"
          },
          "beneficiaryResponsibleSignature": {
            "type": "string"
          }
        },
        "required": [
          "patientUuid",
          "doctorUuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "ProfessionalServiceGuideForm"
      },
      "NextGenModel": {
        "title": "NextGenModel",
        "type": "object",
        "properties": {
          "ng_access_token": {
            "type": "string"
          },
          "ng_expiration_date": {
            "type": "string"
          },
          "ng_session_id": {
            "type": "string"
          },
          "ng_doctor_uuid": {
            "type": "string"
          },
          "ng_patient_uuid": {
            "type": "string"
          },
          "ng_temperature_unit": {
            "type": "string"
          }
        },
        "required": [
          "ng_access_token",
          "ng_expiration_date"
        ],
        "additionalProperties": false
      },
      "NewMeasurement": {
        "title": "NewMeasurement",
        "type": "object",
        "description": "(tsType: Omit<Measurement, 'measurement_id' | 'month' | 'year'>, schemaOptions: { title: 'NewMeasurement', exclude: [ 'measurement_id', 'month', 'year' ] })",
        "properties": {
          "uuid_user": {
            "type": "string"
          },
          "measurement_date": {
            "type": "string",
            "format": "date-time"
          },
          "value": {
            "type": "string"
          },
          "uuid_device": {
            "type": "string"
          },
          "type_measurement": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "status_measurement": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "top": {
            "type": "number",
            "maximum": 2000,
            "minimum": 0
          },
          "startDate": {
            "type": "string"
          },
          "endDate": {
            "type": "string"
          },
          "nextgen_data": {
            "$ref": "#/components/schemas/NextGenModel"
          }
        },
        "required": [
          "uuid_user",
          "measurement_date",
          "value",
          "uuid_device",
          "type_measurement"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<Measurement, 'measurement_id' | 'month' | 'year'>"
      },
      "Measurement": {
        "title": "Measurement",
        "type": "object",
        "properties": {
          "measurement_id": {
            "type": "number"
          },
          "uuid_user": {
            "type": "string"
          },
          "measurement_date": {
            "type": "string",
            "format": "date-time"
          },
          "value": {
            "type": "string"
          },
          "uuid_device": {
            "type": "string"
          },
          "month": {
            "type": "string"
          },
          "year": {
            "type": "string"
          },
          "type_measurement": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "status_measurement": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "top": {
            "type": "number",
            "maximum": 2000,
            "minimum": 0
          },
          "startDate": {
            "type": "string"
          },
          "endDate": {
            "type": "string"
          },
          "nextgen_data": {
            "$ref": "#/components/schemas/NextGenModel"
          }
        },
        "required": [
          "uuid_user",
          "measurement_date",
          "value",
          "uuid_device",
          "month",
          "year",
          "type_measurement"
        ],
        "additionalProperties": false
      },
      "getMeasurement": {
        "title": "getMeasurement",
        "type": "object",
        "description": "(tsType: Omit<Measurement, 'measurement_id' | 'value' | 'uuid_device' | 'measurement_date'>, schemaOptions: { title: 'getMeasurement', exclude: [ 'measurement_id', 'value', 'uuid_device', 'measurement_date' ] })",
        "properties": {
          "uuid_user": {
            "type": "string"
          },
          "month": {
            "type": "string"
          },
          "year": {
            "type": "string"
          },
          "type_measurement": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "status_measurement": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "top": {
            "type": "number",
            "maximum": 2000,
            "minimum": 0
          },
          "startDate": {
            "type": "string"
          },
          "endDate": {
            "type": "string"
          },
          "nextgen_data": {
            "$ref": "#/components/schemas/NextGenModel"
          }
        },
        "required": [
          "uuid_user",
          "month",
          "year",
          "type_measurement"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<Measurement, 'measurement_id' | 'value' | 'uuid_device' | 'measurement_date'>"
      },
      "Request": {},
      "UpdateMeasurement": {
        "title": "UpdateMeasurement",
        "type": "object",
        "description": "(tsType: Omit<Measurement, 'month' | 'year' | 'value' | 'uuid_device' | 'measurement_date' | 'uuid_edit' | 'type_measurement'>, schemaOptions: { title: 'UpdateMeasurement', exclude: [ 'month', 'year', 'value', 'uuid_device', 'measurement_date', 'uuid_edit', 'type_measurement' ] })",
        "properties": {
          "measurement_id": {
            "type": "number"
          },
          "uuid_user": {
            "type": "string"
          },
          "status_measurement": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "top": {
            "type": "number",
            "maximum": 2000,
            "minimum": 0
          },
          "startDate": {
            "type": "string"
          },
          "endDate": {
            "type": "string"
          },
          "nextgen_data": {
            "$ref": "#/components/schemas/NextGenModel"
          }
        },
        "required": [
          "uuid_user"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<Measurement, 'month' | 'year' | 'value' | 'uuid_device' | 'measurement_date' | 'uuid_edit' | 'type_measurement'>"
      },
      "UpdateNotification": {
        "title": "UpdateNotification",
        "type": "object",
        "description": "(tsType: Omit<Measurement, 'month' | 'year' | 'value' | 'uuid_device' | 'measurement_date' | 'uuid_edit' | 'type_measurement'>, schemaOptions: { title: 'UpdateNotification', exclude: [ 'month', 'year', 'value', 'uuid_device', 'measurement_date', 'uuid_edit', 'type_measurement' ] })",
        "properties": {
          "measurement_id": {
            "type": "number"
          },
          "uuid_user": {
            "type": "string"
          },
          "status_measurement": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "top": {
            "type": "number",
            "maximum": 2000,
            "minimum": 0
          },
          "startDate": {
            "type": "string"
          },
          "endDate": {
            "type": "string"
          },
          "nextgen_data": {
            "$ref": "#/components/schemas/NextGenModel"
          }
        },
        "required": [
          "uuid_user"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<Measurement, 'month' | 'year' | 'value' | 'uuid_device' | 'measurement_date' | 'uuid_edit' | 'type_measurement'>"
      },
      "getLastMeasurement": {
        "title": "getLastMeasurement",
        "type": "object",
        "description": "(tsType: Omit<Measurement, 'measurement_id' | 'value' | 'uuid_device' | 'type_measurement' | 'measurement_date'>, schemaOptions: { title: 'getLastMeasurement', exclude: [ 'measurement_id', 'value', 'uuid_device', 'type_measurement', 'measurement_date' ] })",
        "properties": {
          "uuid_user": {
            "type": "string"
          },
          "month": {
            "type": "string"
          },
          "year": {
            "type": "string"
          },
          "uuid_edit": {
            "type": "string"
          },
          "status_measurement": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "top": {
            "type": "number",
            "maximum": 2000,
            "minimum": 0
          },
          "startDate": {
            "type": "string"
          },
          "endDate": {
            "type": "string"
          },
          "nextgen_data": {
            "$ref": "#/components/schemas/NextGenModel"
          }
        },
        "required": [
          "uuid_user",
          "month",
          "year"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<Measurement, 'measurement_id' | 'value' | 'uuid_device' | 'type_measurement' | 'measurement_date'>"
      },
      "sendEmail": {
        "title": "sendEmail",
        "type": "object",
        "description": "(tsType: Email, schemaOptions: { title: 'sendEmail' })",
        "properties": {
          "companyName": {
            "type": "string"
          },
          "recipientEmail": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "emailBody": {
            "type": "string"
          }
        },
        "required": [
          "companyName",
          "recipientEmail",
          "subject",
          "emailBody"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Email"
      },
      "Email": {
        "title": "Email",
        "type": "object",
        "properties": {
          "companyName": {
            "type": "string"
          },
          "recipientEmail": {
            "type": "string"
          },
          "subject": {
            "type": "string"
          },
          "emailBody": {
            "type": "string"
          }
        },
        "required": [
          "companyName",
          "recipientEmail",
          "subject",
          "emailBody"
        ],
        "additionalProperties": false
      },
      "DoctorSpecialties": {
        "title": "DoctorSpecialties",
        "type": "object",
        "properties": {
          "doctorUuid": {
            "type": "string"
          }
        },
        "required": [
          "doctorUuid"
        ],
        "additionalProperties": false
      },
      "Get Doctor Specialties": {
        "title": "Get Doctor Specialties",
        "type": "object",
        "description": "(tsType: DoctorSpecialties, schemaOptions: { title: 'Get Doctor Specialties' })",
        "properties": {
          "doctorUuid": {
            "type": "string"
          }
        },
        "required": [
          "doctorUuid"
        ],
        "additionalProperties": false,
        "x-typescript-type": "DoctorSpecialties"
      },
      "Cuideme_Care_Measurements_Model": {
        "title": "Cuideme_Care_Measurements_Model",
        "type": "object",
        "properties": {
          "device_uuid": {
            "type": "string"
          },
          "systolic_pressure": {
            "type": "number"
          },
          "diastolic_pressure": {
            "type": "number"
          },
          "oxygen_saturation": {
            "type": "number"
          },
          "perfusion_index": {
            "type": "number"
          },
          "beats_per_minute": {
            "type": "number"
          },
          "glucose": {
            "type": "number"
          },
          "other_values": {
            "type": "string"
          },
          "data_type": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "Consultation": {
        "title": "Consultation",
        "type": "object",
        "properties": {
          "consultationUuid": {
            "type": "string"
          },
          "doctorUuid": {
            "type": "string"
          },
          "patientUuid": {
            "type": "string"
          },
          "typeConsultation": {
            "type": "number"
          },
          "typeConsultationAction": {
            "type": "number"
          },
          "elapseTimeInSeconds": {
            "type": "number"
          }
        },
        "required": [
          "consultationUuid",
          "doctorUuid",
          "patientUuid",
          "typeConsultation",
          "typeConsultationAction",
          "elapseTimeInSeconds"
        ],
        "additionalProperties": true
      },
      "Management Consultation": {
        "title": "Management Consultation",
        "type": "object",
        "description": "(tsType: Consultation, schemaOptions: { title: 'Management Consultation' })",
        "properties": {
          "consultationUuid": {
            "type": "string"
          },
          "doctorUuid": {
            "type": "string"
          },
          "patientUuid": {
            "type": "string"
          },
          "typeConsultation": {
            "type": "number"
          },
          "typeConsultationAction": {
            "type": "number"
          },
          "elapseTimeInSeconds": {
            "type": "number"
          }
        },
        "required": [
          "consultationUuid",
          "doctorUuid",
          "patientUuid",
          "typeConsultation",
          "typeConsultationAction",
          "elapseTimeInSeconds"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Consultation"
      },
      "Get Consultation Info": {
        "title": "Get Consultation Info",
        "type": "object",
        "description": "(tsType: Omit<Consultation, 'consultationUuid' | 'typeConsultation' | 'typeConsultationAction' | 'elapseTimeInSeconds'>, schemaOptions: { title: 'Get Consultation Info', exclude: [ 'consultationUuid', 'typeConsultation', 'typeConsultationAction', 'elapseTimeInSeconds' ] })",
        "properties": {
          "doctorUuid": {
            "type": "string"
          },
          "patientUuid": {
            "type": "string"
          }
        },
        "required": [
          "doctorUuid",
          "patientUuid"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<Consultation, 'consultationUuid' | 'typeConsultation' | 'typeConsultationAction' | 'elapseTimeInSeconds'>"
      },
      "ConsultationAssigner": {
        "title": "ConsultationAssigner",
        "type": "object",
        "properties": {
          "adminUuid": {
            "type": "string"
          },
          "doctorUuid": {
            "type": "string"
          },
          "patientUuid": {
            "type": "string"
          },
          "quantitiesPerMonth": {
            "type": "number"
          },
          "timePerConsultationInMinutes": {
            "type": "number"
          }
        },
        "required": [
          "adminUuid",
          "doctorUuid",
          "patientUuid",
          "quantitiesPerMonth",
          "timePerConsultationInMinutes"
        ],
        "additionalProperties": false
      },
      "ConsultationReportDetail": {
        "title": "ConsultationReportDetail",
        "type": "object",
        "properties": {
          "creationDate": {
            "type": "string"
          },
          "endDate": {
            "type": "string"
          },
          "updateDate": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "timeConsultInMin": {
            "type": "number"
          },
          "typeConsultation": {
            "type": "string"
          },
          "status": {
            "type": "number"
          },
          "elapseTimeInSeconds": {
            "type": "number"
          }
        },
        "required": [
          "creationDate",
          "endDate",
          "updateDate",
          "comment",
          "timeConsultInMin",
          "typeConsultation",
          "status",
          "elapseTimeInSeconds"
        ],
        "additionalProperties": false
      },
      "ConsultationReportItem": {
        "title": "ConsultationReportItem",
        "type": "object",
        "properties": {
          "patientFullName": {
            "type": "string"
          },
          "patientId": {
            "type": "string"
          },
          "patientConsultationInfo": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ConsultationReportDetail"
            }
          }
        },
        "required": [
          "patientFullName",
          "patientId",
          "patientConsultationInfo"
        ],
        "additionalProperties": false
      },
      "Consultation Reports Request": {
        "title": "Consultation Reports Request",
        "type": "object",
        "description": "(tsType: ConsultationReportsRequest, schemaOptions: { title: 'Consultation Reports Request' })",
        "properties": {
          "consultation": {
            "type": "object",
            "properties": {
              "doctorUuid": {
                "type": "string"
              }
            },
            "required": [
              "doctorUuid"
            ]
          },
          "startDate": {
            "type": "string"
          },
          "endDate": {
            "type": "string"
          },
          "timeZoneOffset": {
            "type": "number"
          }
        },
        "required": [
          "consultation",
          "startDate",
          "endDate"
        ],
        "additionalProperties": false,
        "x-typescript-type": "ConsultationReportsRequest"
      },
      "ConsultationReportsRequest": {
        "title": "ConsultationReportsRequest",
        "type": "object",
        "properties": {
          "consultation": {
            "type": "object",
            "properties": {
              "doctorUuid": {
                "type": "string"
              }
            },
            "required": [
              "doctorUuid"
            ]
          },
          "startDate": {
            "type": "string"
          },
          "endDate": {
            "type": "string"
          },
          "timeZoneOffset": {
            "type": "number"
          }
        },
        "required": [
          "consultation",
          "startDate",
          "endDate"
        ],
        "additionalProperties": false
      },
      " Array of objects": {
        "title": " Array of objects",
        "type": "object",
        "optional": false,
        "properties": {
          "blood_pressure": {
            "type": "object",
            "optional": true,
            "properties": {
              "systolic_pressure": {
                "type": "number",
                "optional": false
              },
              "diastolic_pressure": {
                "type": "number",
                "optional": false
              },
              "mean_arterial_pressure": {
                "type": "number",
                "optional": false
              },
              "beats_per_minute": {
                "type": "number",
                "optional": false
              }
            }
          },
          "oxygen_saturation": {
            "type": "object",
            "optional": true,
            "properties": {
              "spo2": {
                "type": "number",
                "optional": false
              },
              "beats_per_minute": {
                "type": "number",
                "optional": false
              }
            }
          },
          "glucose": {
            "type": "object",
            "optional": true,
            "properties": {
              "glucose": {
                "type": "number",
                "optional": false
              }
            }
          }
        }
      },
      "Get Measurement Response": {
        "type": "object",
        "title": "Get Measurement Response",
        "properties": {
          "date": {
            "type": "string",
            "optional": false
          },
          "Cuideme_Care_Measurements_Output": {
            "$ref": "#/components/schemas/ Array of objects"
          }
        }
      },
      "loopback.Count": {
        "type": "object",
        "title": "loopback.Count",
        "x-typescript-type": "@loopback/repository#Count",
        "properties": {
          "count": {
            "type": "number"
          }
        }
      },
      "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
          }
        }
      },
      "Users.Filter": {
        "type": "object",
        "title": "Users.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": {
                  "user_id": {
                    "type": "boolean"
                  },
                  "uuid": {
                    "type": "boolean"
                  },
                  "email": {
                    "type": "boolean"
                  },
                  "user_name": {
                    "type": "boolean"
                  },
                  "type_user_id": {
                    "type": "boolean"
                  },
                  "password": {
                    "type": "boolean"
                  },
                  "uuid_clinic": {
                    "type": "boolean"
                  },
                  "reference_id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "last_name": {
                    "type": "boolean"
                  },
                  "birth_date": {
                    "type": "boolean"
                  },
                  "phone": {
                    "type": "boolean"
                  },
                  "emergency_phone": {
                    "type": "boolean"
                  },
                  "birth_address_id": {
                    "type": "boolean"
                  },
                  "address_id": {
                    "type": "boolean"
                  },
                  "height": {
                    "type": "boolean"
                  },
                  "Weight": {
                    "type": "boolean"
                  },
                  "gender_id": {
                    "type": "boolean"
                  },
                  "reset_key": {
                    "type": "boolean"
                  },
                  "check_flag": {
                    "type": "boolean"
                  },
                  "cnmaeusua": {
                    "type": "boolean"
                  },
                  "domain_id": {
                    "type": "boolean"
                  },
                  "Photo": {
                    "type": "boolean"
                  },
                  "fcmToken": {
                    "type": "boolean"
                  },
                  "endpointARN": {
                    "type": "boolean"
                  },
                  "unit_height_id": {
                    "type": "boolean"
                  },
                  "unit_weight_id": {
                    "type": "boolean"
                  },
                  "unit_temperature_id": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "user_id",
                    "uuid",
                    "email",
                    "user_name",
                    "type_user_id",
                    "password",
                    "uuid_clinic",
                    "reference_id",
                    "name",
                    "last_name",
                    "birth_date",
                    "phone",
                    "emergency_phone",
                    "birth_address_id",
                    "address_id",
                    "height",
                    "Weight",
                    "gender_id",
                    "reset_key",
                    "check_flag",
                    "cnmaeusua",
                    "domain_id",
                    "Photo",
                    "fcmToken",
                    "endpointARN",
                    "unit_height_id",
                    "unit_weight_id",
                    "unit_temperature_id"
                  ],
                  "example": "user_id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Users.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Users>"
      },
      "Users.Filter1": {
        "type": "object",
        "title": "Users.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": "Users.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "user_id": {
                    "type": "boolean"
                  },
                  "uuid": {
                    "type": "boolean"
                  },
                  "email": {
                    "type": "boolean"
                  },
                  "user_name": {
                    "type": "boolean"
                  },
                  "type_user_id": {
                    "type": "boolean"
                  },
                  "password": {
                    "type": "boolean"
                  },
                  "uuid_clinic": {
                    "type": "boolean"
                  },
                  "reference_id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "last_name": {
                    "type": "boolean"
                  },
                  "birth_date": {
                    "type": "boolean"
                  },
                  "phone": {
                    "type": "boolean"
                  },
                  "emergency_phone": {
                    "type": "boolean"
                  },
                  "birth_address_id": {
                    "type": "boolean"
                  },
                  "address_id": {
                    "type": "boolean"
                  },
                  "height": {
                    "type": "boolean"
                  },
                  "Weight": {
                    "type": "boolean"
                  },
                  "gender_id": {
                    "type": "boolean"
                  },
                  "reset_key": {
                    "type": "boolean"
                  },
                  "check_flag": {
                    "type": "boolean"
                  },
                  "cnmaeusua": {
                    "type": "boolean"
                  },
                  "domain_id": {
                    "type": "boolean"
                  },
                  "Photo": {
                    "type": "boolean"
                  },
                  "fcmToken": {
                    "type": "boolean"
                  },
                  "endpointARN": {
                    "type": "boolean"
                  },
                  "unit_height_id": {
                    "type": "boolean"
                  },
                  "unit_weight_id": {
                    "type": "boolean"
                  },
                  "unit_temperature_id": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "user_id",
                    "uuid",
                    "email",
                    "user_name",
                    "type_user_id",
                    "password",
                    "uuid_clinic",
                    "reference_id",
                    "name",
                    "last_name",
                    "birth_date",
                    "phone",
                    "emergency_phone",
                    "birth_address_id",
                    "address_id",
                    "height",
                    "Weight",
                    "gender_id",
                    "reset_key",
                    "check_flag",
                    "cnmaeusua",
                    "domain_id",
                    "Photo",
                    "fcmToken",
                    "endpointARN",
                    "unit_height_id",
                    "unit_weight_id",
                    "unit_temperature_id"
                  ],
                  "example": "user_id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Users.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Users>"
      },
      "Get Consultation Info1": {
        "title": "Get Consultation Info",
        "type": "object",
        "description": "(tsType: Omit<Consultation, 'consultationUuid' | 'typeConsultation' | 'typeConsultationAction'>, schemaOptions: { title: 'Get Consultation Info', exclude: [ 'consultationUuid', 'typeConsultation', 'typeConsultationAction' ] })",
        "properties": {
          "doctorUuid": {
            "type": "string"
          },
          "patientUuid": {
            "type": "string"
          },
          "elapseTimeInSeconds": {
            "type": "number"
          }
        },
        "required": [
          "doctorUuid",
          "patientUuid",
          "elapseTimeInSeconds"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<Consultation, 'consultationUuid' | 'typeConsultation' | 'typeConsultationAction'>"
      }
    },
    "securitySchemes": {
      "jwt": {
        "type": "http",
        "scheme": "bearer",
        "bearerFormat": "JWT"
      }
    }
  },
  "security": [
    {
      "jwt": []
    }
  ]
}