{
  "openapi": "3.0.1",
  "info": {
    "title": "LMS APIs",
    "version": "v1"
  },
  "paths": {
    "/api/Authentication/GetToken": {
      "post": {
        "tags": [
          "Authentication"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/LoginRequest"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/LoginRequest"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/LoginRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Authentication/RegisterUser": {
      "post": {
        "tags": [
          "Authentication"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UserRegisterVm"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/UserRegisterVm"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/UserRegisterVm"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Authentication/SendActivationCode": {
      "post": {
        "tags": [
          "Authentication"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ForgetPasswordVm"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/ForgetPasswordVm"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/ForgetPasswordVm"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Authentication/ChangeFogotPassword": {
      "post": {
        "tags": [
          "Authentication"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ForgetPasswordVm"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/ForgetPasswordVm"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/ForgetPasswordVm"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Authentication/GetTokenAsUser": {
      "get": {
        "tags": [
          "Authentication"
        ],
        "parameters": [
          {
            "name": "userId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "pass",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Comment/CreateLessonComment": {
      "post": {
        "tags": [
          "Comment"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateCommentVm"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateCommentVm"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/CreateCommentVm"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Comment/GetCommentInfo": {
      "get": {
        "tags": [
          "Comment"
        ],
        "parameters": [
          {
            "name": "Id",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Comment/RemoveComment": {
      "get": {
        "tags": [
          "Comment"
        ],
        "parameters": [
          {
            "name": "Id",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Comment/GetLessonComments": {
      "get": {
        "tags": [
          "Comment"
        ],
        "parameters": [
          {
            "name": "lessonId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "part",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "size",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Course/GetCourses": {
      "get": {
        "tags": [
          "Course"
        ],
        "parameters": [
          {
            "name": "title",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "part",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "size",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Course/GetUserCourses": {
      "get": {
        "tags": [
          "Course"
        ],
        "parameters": [
          {
            "name": "title",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "part",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "size",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Course/GetCourseLessons": {
      "get": {
        "tags": [
          "Course"
        ],
        "parameters": [
          {
            "name": "courseId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "title",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "part",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "size",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Course/GetLessonInfo": {
      "get": {
        "tags": [
          "Course"
        ],
        "parameters": [
          {
            "name": "lessonId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Diet/GetDietCategories": {
      "get": {
        "tags": [
          "Diet"
        ],
        "parameters": [
          {
            "name": "title",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "part",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "size",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Diet/GetUserDiets": {
      "get": {
        "tags": [
          "Diet"
        ],
        "parameters": [
          {
            "name": "title",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "part",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "size",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Diet/GetDietInfo": {
      "get": {
        "tags": [
          "Diet"
        ],
        "parameters": [
          {
            "name": "dietId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Diet/GetDietFormData": {
      "get": {
        "tags": [
          "Diet"
        ],
        "parameters": [
          {
            "name": "dietId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Diet/UpdateDietFormData": {
      "post": {
        "tags": [
          "Diet"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DietFormVm"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/DietFormVm"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/DietFormVm"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Diet/ExtendDient": {
      "get": {
        "tags": [
          "Diet"
        ],
        "parameters": [
          {
            "name": "dietId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Diet/GetDietHoldoverFormData": {
      "get": {
        "tags": [
          "Diet"
        ],
        "parameters": [
          {
            "name": "dietId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Diet/UpdateDietHoldoverFormData": {
      "post": {
        "tags": [
          "Diet"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DietFormVm"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/DietFormVm"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/DietFormVm"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Diet/GetDietWeeklyReports": {
      "get": {
        "tags": [
          "Diet"
        ],
        "parameters": [
          {
            "name": "dietId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Diet/UpdateWeeklyReport": {
      "post": {
        "tags": [
          "Diet"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/WeeklyDietReportCreationVm"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/WeeklyDietReportCreationVm"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/WeeklyDietReportCreationVm"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Diet/RemoveDietWeeklyReport/{id}": {
      "delete": {
        "tags": [
          "Diet"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/GeneralContent/GetContentPageByKey": {
      "get": {
        "tags": [
          "GeneralContent"
        ],
        "parameters": [
          {
            "name": "keyValue",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/GeneralContent/GetContentFileByKey": {
      "get": {
        "tags": [
          "GeneralContent"
        ],
        "parameters": [
          {
            "name": "keyValue",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Log/SetUserIpLog": {
      "post": {
        "tags": [
          "Log"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UserIpLogRequest"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/UserIpLogRequest"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/UserIpLogRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Payment/GetTaxPercent": {
      "get": {
        "tags": [
          "Payment"
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Payment/IsValidCourseToBasket": {
      "get": {
        "tags": [
          "Payment"
        ],
        "parameters": [
          {
            "name": "courseId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Payment/IsValidDietToBasket": {
      "get": {
        "tags": [
          "Payment"
        ],
        "parameters": [
          {
            "name": "categoryId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Payment/GetPaymentGateways": {
      "get": {
        "tags": [
          "Payment"
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Payment/GetNovinpalRefId": {
      "post": {
        "tags": [
          "Payment"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PaymentCreationVm"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/PaymentCreationVm"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/PaymentCreationVm"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Payment/GetZarinpalPaymentRefId": {
      "post": {
        "tags": [
          "Payment"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PaymentCreationVm"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/PaymentCreationVm"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/PaymentCreationVm"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Payment/GetPaymentGateUrl": {
      "post": {
        "tags": [
          "Payment"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PaymentCreationVm"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/PaymentCreationVm"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/PaymentCreationVm"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Payment/GetUserInvoices": {
      "get": {
        "tags": [
          "Payment"
        ],
        "parameters": [
          {
            "name": "status",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "part",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "size",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Product/GetProducts": {
      "get": {
        "tags": [
          "Product"
        ],
        "parameters": [
          {
            "name": "title",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "part",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "size",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/Setting/GetDisplayInfo": {
      "get": {
        "tags": [
          "Setting"
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/User/GetUserInfo": {
      "get": {
        "tags": [
          "User"
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/User/UpdateProfile": {
      "post": {
        "tags": [
          "User"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UserProfileCreationVm"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/UserProfileCreationVm"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/UserProfileCreationVm"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/User/GetUserChatInfo": {
      "get": {
        "tags": [
          "User"
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/User/GetUserIPInfo": {
      "get": {
        "tags": [
          "User"
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "BodySizeModel": {
        "type": "object",
        "properties": {
          "reportDate": {
            "type": "string",
            "nullable": true
          },
          "weekNumber": {
            "type": "integer",
            "format": "int32"
          },
          "weekDay": {
            "$ref": "#/components/schemas/WeekDay"
          },
          "shoulderSize": {
            "type": "number",
            "format": "float"
          },
          "breastSize": {
            "type": "number",
            "format": "float"
          },
          "rightArmSize": {
            "type": "number",
            "format": "float"
          },
          "leftArmSize": {
            "type": "number",
            "format": "float"
          },
          "navalSize": {
            "type": "number",
            "format": "float"
          },
          "aboveNavalSize": {
            "type": "number",
            "format": "float"
          },
          "bottomNavalSize": {
            "type": "number",
            "format": "float"
          },
          "hipSize": {
            "type": "number",
            "format": "float"
          },
          "rightThighSize": {
            "type": "number",
            "format": "float"
          },
          "leftThighSize": {
            "type": "number",
            "format": "float"
          },
          "createDate": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "CartModel": {
        "type": "object",
        "properties": {
          "productType": {
            "$ref": "#/components/schemas/SaleProductType"
          },
          "itemId": {
            "type": "integer",
            "format": "int32"
          },
          "title": {
            "type": "string",
            "nullable": true
          },
          "size": {
            "type": "string",
            "nullable": true
          },
          "color": {
            "type": "string",
            "nullable": true
          },
          "noTaxPrice": {
            "type": "integer",
            "format": "int64"
          },
          "discount": {
            "type": "integer",
            "format": "int64"
          },
          "tax": {
            "type": "integer",
            "format": "int64"
          },
          "price": {
            "type": "integer",
            "format": "int64"
          },
          "numbers": {
            "type": "integer",
            "format": "int32"
          },
          "imageSrc": {
            "type": "string",
            "nullable": true
          },
          "relatedId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "CreateCommentVm": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "format": "int32"
          },
          "parentId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "commentType": {
            "type": "integer",
            "format": "int32"
          },
          "commentText": {
            "type": "string",
            "nullable": true
          },
          "displayApproved": {
            "type": "boolean"
          },
          "referenceId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "prevPart": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "DietFormVm": {
        "type": "object",
        "properties": {
          "dietId": {
            "type": "integer",
            "format": "int32"
          },
          "formDataId": {
            "type": "integer",
            "format": "int32"
          },
          "sendToExpert": {
            "type": "boolean"
          },
          "answerObject": {
            "type": "string",
            "nullable": true
          },
          "calorie": {
            "type": "integer",
            "format": "int32"
          },
          "dietType": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "ForgetPasswordVm": {
        "type": "object",
        "properties": {
          "username": {
            "type": "string",
            "nullable": true
          },
          "newPassword": {
            "type": "string",
            "nullable": true
          },
          "confirmPass": {
            "type": "string",
            "nullable": true
          },
          "activationCode": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "GatewayPspType": {
        "enum": [
          1,
          2,
          3,
          4
        ],
        "type": "integer",
        "format": "int32"
      },
      "LoginRequest": {
        "type": "object",
        "properties": {
          "username": {
            "type": "string",
            "nullable": true
          },
          "password": {
            "type": "string",
            "nullable": true
          },
          "rememberMe": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "PaymentCreationVm": {
        "type": "object",
        "properties": {
          "carts": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/CartModel"
            },
            "nullable": true
          },
          "paymentGatewayId": {
            "type": "integer",
            "format": "int32"
          },
          "gatewayPspType": {
            "$ref": "#/components/schemas/GatewayPspType"
          },
          "address": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "SaleProductType": {
        "enum": [
          1,
          2,
          3,
          4
        ],
        "type": "integer",
        "format": "int32"
      },
      "UserIpLogRequest": {
        "type": "object",
        "properties": {
          "urlPath": {
            "type": "string",
            "nullable": true
          },
          "ipValue": {
            "type": "string",
            "nullable": true
          },
          "deviceName": {
            "type": "string",
            "nullable": true
          },
          "referenceId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "UserProfileCreationVm": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "format": "int32"
          },
          "firstname": {
            "type": "string",
            "nullable": true
          },
          "lastname": {
            "type": "string",
            "nullable": true
          },
          "nCode": {
            "type": "string",
            "nullable": true
          },
          "mobile": {
            "type": "string",
            "nullable": true
          },
          "tel": {
            "type": "string",
            "nullable": true
          },
          "gender": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "address": {
            "type": "string",
            "nullable": true
          },
          "zipCode": {
            "type": "string",
            "nullable": true
          },
          "instagramId": {
            "type": "string",
            "nullable": true
          },
          "birthDate": {
            "type": "string",
            "nullable": true
          },
          "avatar": {
            "type": "string",
            "nullable": true
          },
          "friendName": {
            "type": "string",
            "nullable": true
          },
          "friendPhone": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "UserRegisterVm": {
        "type": "object",
        "properties": {
          "firstname": {
            "type": "string",
            "nullable": true
          },
          "lastname": {
            "type": "string",
            "nullable": true
          },
          "email": {
            "type": "string",
            "nullable": true
          },
          "password": {
            "type": "string",
            "nullable": true
          },
          "confirmPassword": {
            "type": "string",
            "nullable": true
          },
          "phoneNumber": {
            "type": "string",
            "nullable": true
          },
          "instagramId": {
            "type": "string",
            "nullable": true
          },
          "whatsappNumber": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "WeekDay": {
        "enum": [
          1,
          2,
          3,
          4,
          5,
          6,
          7
        ],
        "type": "integer",
        "format": "int32"
      },
      "WeeklyDietReportCreationVm": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "format": "int32"
          },
          "sizeList": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BodySizeModel"
            },
            "nullable": true
          },
          "weightList": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/WeightReportModel"
            },
            "nullable": true
          },
          "dietId": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "WeightReportModel": {
        "type": "object",
        "properties": {
          "reportDate": {
            "type": "string",
            "nullable": true
          },
          "weekDay": {
            "$ref": "#/components/schemas/WeekDay"
          },
          "weight": {
            "type": "number",
            "format": "float"
          },
          "createDate": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      }
    },
    "securitySchemes": {
      "Bearer": {
        "type": "http",
        "description": "Please enter token",
        "scheme": "bearer",
        "bearerFormat": "JWT"
      }
    }
  },
  "security": [
    {
      "Bearer": [ ]
    }
  ]
}