{
  "openapi": "3.0.4",
  "info": {
    "title": "Gural Mobile Order System - Version 4.3.0.1 - Hotel Tekirova - Production",
    "description": "Gural Premier Hotels Mobile Order System API documentation.\n\nAll rights reserved. Gural Information Technology 2026",
    "contact": {
      "name": "the developers of Gural Information Technology",
      "email": "developer@guralporselen.com.tr"
    },
    "version": "v1"
  },
  "servers": [
    {
      "url": "http://mos.t.gp.com.tr/"
    }
  ],
  "paths": {
    "/swg": {
      "get": {
        "tags": [
          "Gural.MOS.ApiHost"
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/sca": {
      "get": {
        "tags": [
          "Gural.MOS.ApiHost"
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/docs": {
      "get": {
        "tags": [
          "Gural.MOS.ApiHost"
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/random/number": {
      "get": {
        "tags": [
          "Gural.MOS.ApiHost"
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/api/logstash/getcompletelog": {
      "get": {
        "tags": [
          "XpoLogStash"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/LogMessage"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/logstash/getmessage": {
      "get": {
        "tags": [
          "XpoLogStash"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/LogMessage"
                }
              }
            }
          }
        }
      }
    },
    "/api/logstash/getmessages/{messagesCount}": {
      "get": {
        "tags": [
          "XpoLogStash"
        ],
        "parameters": [
          {
            "name": "messagesCount",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/LogMessage"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/usergroups/{id}": {
      "get": {
        "tags": [
          "UserGroups"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfUserGroupDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfUserGroupDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfUserGroupDto"
                }
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "UserGroups"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/UserGroupUpdateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UserGroupUpdateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/UserGroupUpdateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/UserGroupUpdateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfUserGroupDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfUserGroupDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfUserGroupDto"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "UserGroups"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/usergroups": {
      "get": {
        "tags": [
          "UserGroups"
        ],
        "parameters": [
          {
            "name": "onlyActive",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfUserGroupDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfUserGroupDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfUserGroupDto"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "UserGroups"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/UserGroupCreateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UserGroupCreateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/UserGroupCreateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/UserGroupCreateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfUserGroupDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfUserGroupDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfUserGroupDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/users/{id}": {
      "get": {
        "tags": [
          "Users"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileUserDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileUserDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileUserDto"
                }
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "Users"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/MobileUserUpdateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MobileUserUpdateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/MobileUserUpdateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/MobileUserUpdateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileUserDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileUserDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileUserDto"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "Users"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/users": {
      "get": {
        "tags": [
          "Users"
        ],
        "parameters": [
          {
            "name": "onlyActive",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfMobileUserDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfMobileUserDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfMobileUserDto"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "Users"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/MobileUserCreateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MobileUserCreateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/MobileUserCreateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/MobileUserCreateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileUserDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileUserDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileUserDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/users/{id}/active-status": {
      "patch": {
        "tags": [
          "Users"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          },
          {
            "name": "isActive",
            "in": "query",
            "schema": {
              "type": "boolean",
              "default": true
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/report/device-order-counts": {
      "get": {
        "tags": [
          "Report"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfDeviceOrderReportDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfDeviceOrderReportDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfDeviceOrderReportDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/productgroups/{id}": {
      "get": {
        "tags": [
          "ProductGroups"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductGroupDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductGroupDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductGroupDto"
                }
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "ProductGroups"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductGroupUpdateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductGroupUpdateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductGroupUpdateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductGroupUpdateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductGroupDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductGroupDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductGroupDto"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "ProductGroups"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/productgroups": {
      "get": {
        "tags": [
          "ProductGroups"
        ],
        "parameters": [
          {
            "name": "onlyActive",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductGroupDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductGroupDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductGroupDto"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "ProductGroups"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductGroupCreateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductGroupCreateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductGroupCreateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductGroupCreateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductGroupDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductGroupDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductGroupDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/productgroups/nested-groups": {
      "get": {
        "tags": [
          "ProductGroups"
        ],
        "parameters": [
          {
            "name": "locationId",
            "in": "query",
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductGroupWithSubGroupsDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductGroupWithSubGroupsDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductGroupWithSubGroupsDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/productlocationdeviceroutes/{id}": {
      "get": {
        "tags": [
          "ProductLocationDeviceRoutes"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductLocationDeviceRouteDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductLocationDeviceRouteDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductLocationDeviceRouteDto"
                }
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "ProductLocationDeviceRoutes"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductLocationDeviceRouteSaveDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductLocationDeviceRouteSaveDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductLocationDeviceRouteSaveDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductLocationDeviceRouteSaveDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductLocationDeviceRouteDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductLocationDeviceRouteDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductLocationDeviceRouteDto"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "ProductLocationDeviceRoutes"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/productlocationdeviceroutes": {
      "get": {
        "tags": [
          "ProductLocationDeviceRoutes"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductLocationDeviceRouteDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductLocationDeviceRouteDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductLocationDeviceRouteDto"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "ProductLocationDeviceRoutes"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductLocationDeviceRouteSaveDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductLocationDeviceRouteSaveDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductLocationDeviceRouteSaveDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductLocationDeviceRouteSaveDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductLocationDeviceRouteDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductLocationDeviceRouteDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductLocationDeviceRouteDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/products/{id}": {
      "get": {
        "tags": [
          "Products"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductDto"
                }
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "Products"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductUpdateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductUpdateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductUpdateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductUpdateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductDto"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "Products"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/products": {
      "get": {
        "tags": [
          "Products"
        ],
        "parameters": [
          {
            "name": "onlyActive",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductDto"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "Products"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductCreateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductCreateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductCreateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductCreateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/products/by-location/{locationId}": {
      "get": {
        "tags": [
          "Products"
        ],
        "parameters": [
          {
            "name": "locationId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductsForLocationDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductsForLocationDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductsForLocationDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/products/by-location/{locationId}/register": {
      "post": {
        "tags": [
          "Products"
        ],
        "parameters": [
          {
            "name": "locationId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "type": "array",
                "items": {
                  "pattern": "^-?(?:0|[1-9]\\d*)$",
                  "format": "int32"
                }
              }
            },
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "pattern": "^-?(?:0|[1-9]\\d*)$",
                  "format": "int32"
                }
              }
            },
            "text/json": {
              "schema": {
                "type": "array",
                "items": {
                  "pattern": "^-?(?:0|[1-9]\\d*)$",
                  "format": "int32"
                }
              }
            },
            "application/*+json": {
              "schema": {
                "type": "array",
                "items": {
                  "pattern": "^-?(?:0|[1-9]\\d*)$",
                  "format": "int32"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/products/by-location/{locationId}/unregister": {
      "delete": {
        "tags": [
          "Products"
        ],
        "parameters": [
          {
            "name": "locationId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "type": "array",
                "items": {
                  "pattern": "^-?(?:0|[1-9]\\d*)$",
                  "format": "int32"
                }
              }
            },
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "pattern": "^-?(?:0|[1-9]\\d*)$",
                  "format": "int32"
                }
              }
            },
            "text/json": {
              "schema": {
                "type": "array",
                "items": {
                  "pattern": "^-?(?:0|[1-9]\\d*)$",
                  "format": "int32"
                }
              }
            },
            "application/*+json": {
              "schema": {
                "type": "array",
                "items": {
                  "pattern": "^-?(?:0|[1-9]\\d*)$",
                  "format": "int32"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/products/with-variants": {
      "get": {
        "tags": [
          "Products"
        ],
        "parameters": [
          {
            "name": "onlyActive",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfVariantDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfVariantDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfVariantDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/products/{productId}/variants/{variantId}": {
      "delete": {
        "tags": [
          "Products"
        ],
        "parameters": [
          {
            "name": "productId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          },
          {
            "name": "variantId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/products/{productId}/variants": {
      "post": {
        "tags": [
          "Products"
        ],
        "parameters": [
          {
            "name": "productId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductVariantCreateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductVariantCreateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductVariantCreateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductVariantCreateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductVariantValueDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductVariantValueDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductVariantValueDto"
                }
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "Products"
        ],
        "parameters": [
          {
            "name": "productId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfVariantDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfVariantDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfVariantDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/products/{productId}/images/{imageId}": {
      "get": {
        "tags": [
          "Products"
        ],
        "parameters": [
          {
            "name": "productId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          },
          {
            "name": "imageId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductImageDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductImageDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductImageDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/products/{productId}/images": {
      "get": {
        "tags": [
          "Products"
        ],
        "parameters": [
          {
            "name": "productId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          },
          {
            "name": "type",
            "in": "query",
            "schema": {
              "$ref": "#/components/schemas/ProductImageType"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductImageDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductImageDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductImageDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/products/getproductsbygroup": {
      "post": {
        "tags": [
          "Products"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductsByGroupForLocationDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductsByGroupForLocationDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductsByGroupForLocationDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductsByGroupForLocationDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/products/{productId}/variant-values/{variantValueId}": {
      "get": {
        "tags": [
          "Products"
        ],
        "parameters": [
          {
            "name": "productId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          },
          {
            "name": "variantValueId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfVariantValueDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfVariantValueDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfVariantValueDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/productvarianttypes/{id}": {
      "get": {
        "tags": [
          "ProductVariantTypes"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductVariantTypeDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductVariantTypeDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductVariantTypeDto"
                }
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "ProductVariantTypes"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductVariantTypeUpdateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductVariantTypeUpdateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductVariantTypeUpdateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductVariantTypeUpdateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductVariantTypeDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductVariantTypeDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductVariantTypeDto"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "ProductVariantTypes"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/productvarianttypes": {
      "get": {
        "tags": [
          "ProductVariantTypes"
        ],
        "parameters": [
          {
            "name": "onlyActive",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductVariantTypeDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductVariantTypeDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductVariantTypeDto"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "ProductVariantTypes"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductVariantTypeCreateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductVariantTypeCreateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductVariantTypeCreateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductVariantTypeCreateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductVariantTypeDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductVariantTypeDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductVariantTypeDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/productvarianttypes/{id}/values": {
      "post": {
        "tags": [
          "ProductVariantTypes"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductVariantValueCreateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductVariantValueCreateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductVariantValueCreateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductVariantValueCreateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductVariantValueDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductVariantValueDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductVariantValueDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/productvarianttypes/{id}/values/{variantValueId}": {
      "put": {
        "tags": [
          "ProductVariantTypes"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          },
          {
            "name": "variantValueId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductVariantValueUpdateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductVariantValueUpdateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductVariantValueUpdateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductVariantValueUpdateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductVariantValueDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductVariantValueDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductVariantValueDto"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "ProductVariantTypes"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          },
          {
            "name": "variantValueId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/productimages/{productId}": {
      "get": {
        "tags": [
          "ProductImages"
        ],
        "parameters": [
          {
            "name": "productId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductImageTypeUrlDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductImageTypeUrlDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductImageTypeUrlDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/productimages": {
      "get": {
        "tags": [
          "ProductImages"
        ],
        "parameters": [
          {
            "name": "type",
            "in": "query",
            "schema": {
              "$ref": "#/components/schemas/ProductImageType"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductImageTypeUrlDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductImageTypeUrlDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductImageTypeUrlDto"
                }
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "ProductImages"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductImageNewUpdateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductImageNewUpdateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductImageNewUpdateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductImageNewUpdateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/productimages/{imageId}": {
      "delete": {
        "tags": [
          "ProductImages"
        ],
        "parameters": [
          {
            "name": "imageId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/productimages/by-type/{productId}/{imageType}": {
      "delete": {
        "tags": [
          "ProductImages"
        ],
        "parameters": [
          {
            "name": "productId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          },
          {
            "name": "imageType",
            "in": "path",
            "required": true,
            "schema": {
              "$ref": "#/components/schemas/ProductImageType"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/productimages/upload": {
      "post": {
        "tags": [
          "ProductImages"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductImageUploadDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductImageUploadDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/ProductImageUploadDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/ProductImageUploadDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductImageUploadResponseDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductImageUploadResponseDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfProductImageUploadResponseDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/productimages/upload-many": {
      "post": {
        "tags": [
          "ProductImages"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/ProductImageUploadDto"
                }
              }
            },
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/ProductImageUploadDto"
                }
              }
            },
            "text/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/ProductImageUploadDto"
                }
              }
            },
            "application/*+json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/ProductImageUploadDto"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductImageUploadResponseDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductImageUploadResponseDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfProductImageUploadResponseDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/productimages/root-path/{id}": {
      "get": {
        "tags": [
          "ProductImages"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfImageRootPathDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfImageRootPathDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfImageRootPathDto"
                }
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "ProductImages"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/ImageRootPathUpdateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ImageRootPathUpdateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/ImageRootPathUpdateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/ImageRootPathUpdateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfImageRootPathDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfImageRootPathDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfImageRootPathDto"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "ProductImages"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/productimages/root-path": {
      "get": {
        "tags": [
          "ProductImages"
        ],
        "parameters": [
          {
            "name": "onlyActive",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfImageRootPathDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfImageRootPathDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfImageRootPathDto"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "ProductImages"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/ImageRootPathCreateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ImageRootPathCreateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/ImageRootPathCreateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/ImageRootPathCreateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfImageRootPathDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfImageRootPathDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfImageRootPathDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/orders": {
      "post": {
        "tags": [
          "Orders"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/OrderCreateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OrderCreateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/OrderCreateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/OrderCreateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfOrderCreateResultDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfOrderCreateResultDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfOrderCreateResultDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/orders/{orderId}/details": {
      "post": {
        "tags": [
          "Orders"
        ],
        "parameters": [
          {
            "name": "orderId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          },
          {
            "name": "userId",
            "in": "query",
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/OrderDetailCreateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OrderDetailCreateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/OrderDetailCreateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/OrderDetailCreateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfOrderDetailCreateResultDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfOrderDetailCreateResultDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfOrderDetailCreateResultDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/orders/{orderId}/details/{detailId}": {
      "put": {
        "tags": [
          "Orders"
        ],
        "parameters": [
          {
            "name": "orderId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          },
          {
            "name": "detailId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/OrderDetailUpdateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OrderDetailUpdateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/OrderDetailUpdateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/OrderDetailUpdateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfOrderDetailUpdateResultDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfOrderDetailUpdateResultDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfOrderDetailUpdateResultDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/orders/get-by-id/{orderId}": {
      "get": {
        "tags": [
          "Orders"
        ],
        "parameters": [
          {
            "name": "orderId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfOrderDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfOrderDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfOrderDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/orders/get-all-by-status": {
      "get": {
        "tags": [
          "Orders"
        ],
        "parameters": [
          {
            "name": "orderStatus",
            "in": "query",
            "schema": {
              "$ref": "#/components/schemas/OrderStatus"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfOrderDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfOrderDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfOrderDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/orders/{orderId}/status": {
      "put": {
        "tags": [
          "Orders"
        ],
        "parameters": [
          {
            "name": "orderId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/OrderStatusUpdateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OrderStatusUpdateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/OrderStatusUpdateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/OrderStatusUpdateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfOrderStatusUpdateResultDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfOrderStatusUpdateResultDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfOrderStatusUpdateResultDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/orders/{orderId}/details/{detailId}/status": {
      "put": {
        "tags": [
          "Orders"
        ],
        "parameters": [
          {
            "name": "orderId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          },
          {
            "name": "detailId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/OrderDetailStatusUpdateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OrderDetailStatusUpdateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/OrderDetailStatusUpdateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/OrderDetailStatusUpdateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfOrderDetailStatusUpdateResultDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfOrderDetailStatusUpdateResultDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfOrderDetailStatusUpdateResultDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/orders/status/update-all-served": {
      "put": {
        "tags": [
          "Orders"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "type": "array",
                "items": {
                  "pattern": "^-?(?:0|[1-9]\\d*)$",
                  "format": "int32"
                }
              }
            },
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "pattern": "^-?(?:0|[1-9]\\d*)$",
                  "format": "int32"
                }
              }
            },
            "text/json": {
              "schema": {
                "type": "array",
                "items": {
                  "pattern": "^-?(?:0|[1-9]\\d*)$",
                  "format": "int32"
                }
              }
            },
            "application/*+json": {
              "schema": {
                "type": "array",
                "items": {
                  "pattern": "^-?(?:0|[1-9]\\d*)$",
                  "format": "int32"
                }
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/orders/{orderId}/close": {
      "put": {
        "tags": [
          "Orders"
        ],
        "parameters": [
          {
            "name": "orderId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          },
          {
            "name": "userId",
            "in": "query",
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfOrderStatusNotifyDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfOrderStatusNotifyDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfOrderStatusNotifyDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/orders/get-details-by-device": {
      "get": {
        "tags": [
          "Orders"
        ],
        "parameters": [
          {
            "name": "preparedDeviceId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfOrderDetailForMobileDeviceDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfOrderDetailForMobileDeviceDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfOrderDetailForMobileDeviceDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/orders/get-details-by-device-status": {
      "get": {
        "tags": [
          "Orders"
        ],
        "parameters": [
          {
            "name": "preparedDeviceId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "orderStatus",
            "in": "query",
            "schema": {
              "$ref": "#/components/schemas/OrderStatus"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfOrderDetailForMobileDeviceDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfOrderDetailForMobileDeviceDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfOrderDetailForMobileDeviceDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/orders/get-details-by-taken-device": {
      "get": {
        "tags": [
          "Orders"
        ],
        "parameters": [
          {
            "name": "takenDeviceId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfOrderDetailForMobileDeviceDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfOrderDetailForMobileDeviceDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfOrderDetailForMobileDeviceDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/orders/get-details-by-taken-device-status": {
      "get": {
        "tags": [
          "Orders"
        ],
        "parameters": [
          {
            "name": "takenDeviceId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "orderStatus",
            "in": "query",
            "schema": {
              "$ref": "#/components/schemas/OrderStatus"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfOrderDetailForMobileDeviceDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfOrderDetailForMobileDeviceDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfOrderDetailForMobileDeviceDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/locations/{id}": {
      "get": {
        "tags": [
          "Locations"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfLocationDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfLocationDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfLocationDto"
                }
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "Locations"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/LocationUpdateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/LocationUpdateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/LocationUpdateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/LocationUpdateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfLocationDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfLocationDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfLocationDto"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "Locations"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/locations": {
      "get": {
        "tags": [
          "Locations"
        ],
        "parameters": [
          {
            "name": "onlyActive",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfLocationDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfLocationDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfLocationDto"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "Locations"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/LocationCreateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/LocationCreateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/LocationCreateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/LocationCreateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfLocationDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfLocationDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfLocationDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/locationtypes/{id}": {
      "get": {
        "tags": [
          "LocationTypes"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfLocationTypeDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfLocationTypeDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfLocationTypeDto"
                }
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "LocationTypes"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/LocationTypeUpdateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/LocationTypeUpdateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/LocationTypeUpdateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/LocationTypeUpdateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfLocationTypeDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfLocationTypeDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfLocationTypeDto"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "LocationTypes"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/locationtypes": {
      "get": {
        "tags": [
          "LocationTypes"
        ],
        "parameters": [
          {
            "name": "onlyActive",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfLocationTypeDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfLocationTypeDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfLocationTypeDto"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "LocationTypes"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/LocationTypeCreateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/LocationTypeCreateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/LocationTypeCreateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/LocationTypeCreateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfLocationTypeDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfLocationTypeDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfLocationTypeDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/sections": {
      "post": {
        "tags": [
          "Sections"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/SectionCreateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SectionCreateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/SectionCreateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/SectionCreateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfSectionDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfSectionDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfSectionDto"
                }
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "Sections"
        ],
        "parameters": [
          {
            "name": "onlyActive",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfSectionDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfSectionDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfSectionDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/sections/{id}": {
      "put": {
        "tags": [
          "Sections"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/SectionUpdateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SectionUpdateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/SectionUpdateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/SectionUpdateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfSectionDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfSectionDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfSectionDto"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "Sections"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "Sections"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfSectionDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfSectionDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfSectionDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/sections/get-by-location/{locationId}": {
      "get": {
        "tags": [
          "Sections"
        ],
        "parameters": [
          {
            "name": "locationId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfSectionDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfSectionDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfSectionDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/sections/{sectionId}/tables": {
      "post": {
        "tags": [
          "Sections"
        ],
        "parameters": [
          {
            "name": "sectionId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/TableCreateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/TableCreateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/TableCreateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/TableCreateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfTableDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfTableDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfTableDto"
                }
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "Sections"
        ],
        "parameters": [
          {
            "name": "sectionId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfTableDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfTableDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfTableDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/sections/{sectionId}/tables/{tableNo}": {
      "put": {
        "tags": [
          "Sections"
        ],
        "parameters": [
          {
            "name": "sectionId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          },
          {
            "name": "tableNo",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/TableUpdateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/TableUpdateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/TableUpdateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/TableUpdateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfTableDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfTableDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfTableDto"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "Sections"
        ],
        "parameters": [
          {
            "name": "sectionId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          },
          {
            "name": "tableNo",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/sections/tables/{tableId}": {
      "put": {
        "tags": [
          "Sections"
        ],
        "parameters": [
          {
            "name": "tableId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/TableUpdateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/TableUpdateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/TableUpdateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/TableUpdateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfTableDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfTableDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfTableDto"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "Sections"
        ],
        "parameters": [
          {
            "name": "tableId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/mobiledevices/{id}": {
      "get": {
        "tags": [
          "MobileDevices"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileDeviceDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileDeviceDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileDeviceDto"
                }
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "MobileDevices"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/MobileDeviceUpdateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MobileDeviceUpdateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/MobileDeviceUpdateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/MobileDeviceUpdateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileDeviceDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileDeviceDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileDeviceDto"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "MobileDevices"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/mobiledevices": {
      "get": {
        "tags": [
          "MobileDevices"
        ],
        "parameters": [
          {
            "name": "onlyActive",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfMobileDeviceDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfMobileDeviceDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfMobileDeviceDto"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "MobileDevices"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/MobileDeviceCreateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MobileDeviceCreateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/MobileDeviceCreateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/MobileDeviceCreateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileDeviceDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileDeviceDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileDeviceDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/mobiledevices/register": {
      "post": {
        "tags": [
          "MobileDevices"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/MobileDeviceRegisterDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MobileDeviceRegisterDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/MobileDeviceRegisterDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/MobileDeviceRegisterDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileDeviceDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileDeviceDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileDeviceDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/mobiledevices/{id}/printers": {
      "post": {
        "tags": [
          "MobileDevices"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/DevicePrinterCreateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DevicePrinterCreateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/DevicePrinterCreateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/DevicePrinterCreateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfDevicePrinterDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfDevicePrinterDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfDevicePrinterDto"
                }
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "MobileDevices"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/DevicePrinterUpdateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DevicePrinterUpdateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/DevicePrinterUpdateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/DevicePrinterUpdateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfDevicePrinterDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfDevicePrinterDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfDevicePrinterDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/mobiledevices/{id}/printers/{printerId}": {
      "delete": {
        "tags": [
          "MobileDevices"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          },
          {
            "name": "printerId",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfDevicePrinterDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfDevicePrinterDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfDevicePrinterDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/printers/{id}": {
      "get": {
        "tags": [
          "Printers"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfPrinterDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfPrinterDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfPrinterDto"
                }
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "Printers"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PrinterUpdateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PrinterUpdateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/PrinterUpdateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/PrinterUpdateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfPrinterDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfPrinterDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfPrinterDto"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "Printers"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/printers": {
      "get": {
        "tags": [
          "Printers"
        ],
        "parameters": [
          {
            "name": "onlyActive",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfPrinterDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfPrinterDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfIEnumerableOfPrinterDto"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "Printers"
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/PrinterCreateDto"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PrinterCreateDto"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/PrinterCreateDto"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/PrinterCreateDto"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfPrinterDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfPrinterDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfPrinterDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/printers/{id}/increase-print-count": {
      "post": {
        "tags": [
          "Printers"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          },
          {
            "name": "deviceId",
            "in": "query",
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          },
          {
            "name": "amountOfIncrease",
            "in": "query",
            "schema": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32",
              "default": 1
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/auth/login": {
      "post": {
        "tags": [
          "Auth"
        ],
        "parameters": [
          {
            "name": "userName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "password",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileUserDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileUserDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileUserDto"
                }
              }
            }
          }
        }
      }
    },
    "/api/auth/password-change": {
      "post": {
        "tags": [
          "Auth"
        ],
        "parameters": [
          {
            "name": "userName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "oldPassword",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "newPassword",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileUserDto"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileUserDto"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/IDataResponseOfMobileUserDto"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "DeviceOrderReportDto": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "deviceName": {
            "type": "string",
            "nullable": true
          },
          "deviceOrderCount": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int64",
            "nullable": true
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "DevicePrinterCreateDto": {
        "type": "object",
        "properties": {
          "printerId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "DevicePrinterDto": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "printCount": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "printer": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/PrinterDto"
              }
            ],
            "nullable": true
          },
          "device": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/MobileDeviceDto"
              }
            ],
            "nullable": true
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "DevicePrinterForDeviceDto": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "printCount": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "printer": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/PrinterDto"
              }
            ],
            "nullable": true
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "DevicePrinterUpdateDto": {
        "type": "object",
        "properties": {
          "devicePrinterId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "printerId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "GuestDto": {
        "required": [
          "uuid",
          "id"
        ],
        "type": "object",
        "properties": {
          "guestId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "uuid": {
            "type": "string"
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "IDataResponseOfDevicePrinterDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/DevicePrinterDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfIEnumerableOfDeviceOrderReportDto": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DeviceOrderReportDto"
            },
            "nullable": true
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfIEnumerableOfImageRootPathDto": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ImageRootPathDto"
            },
            "nullable": true
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfIEnumerableOfLocationDto": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/LocationDto"
            },
            "nullable": true
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfIEnumerableOfLocationTypeDto": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/LocationTypeDto"
            },
            "nullable": true
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfIEnumerableOfMobileDeviceDto": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/MobileDeviceDto"
            },
            "nullable": true
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfIEnumerableOfMobileUserDto": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/MobileUserDto"
            },
            "nullable": true
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfIEnumerableOfOrderDetailForMobileDeviceDto": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderDetailForMobileDeviceDto"
            },
            "nullable": true
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfIEnumerableOfOrderDto": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderDto"
            },
            "nullable": true
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfIEnumerableOfPrinterDto": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PrinterDto"
            },
            "nullable": true
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfIEnumerableOfProductDto": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductDto"
            },
            "nullable": true
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfIEnumerableOfProductGroupDto": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductGroupDto"
            },
            "nullable": true
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfIEnumerableOfProductGroupWithSubGroupsDto": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductGroupWithSubGroupsDto"
            },
            "nullable": true
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfIEnumerableOfProductImageDto": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductImageDto"
            },
            "nullable": true
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfIEnumerableOfProductImageTypeUrlDto": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductImageTypeUrlDto"
            },
            "nullable": true
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfIEnumerableOfProductImageUploadResponseDto": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductImageUploadResponseDto"
            },
            "nullable": true
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfIEnumerableOfProductLocationDeviceRouteDto": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductLocationDeviceRouteDto"
            },
            "nullable": true
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfIEnumerableOfProductsForLocationDto": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductsForLocationDto"
            },
            "nullable": true
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfIEnumerableOfProductVariantTypeDto": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductVariantTypeDto"
            },
            "nullable": true
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfIEnumerableOfSectionDto": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/SectionDto"
            },
            "nullable": true
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfIEnumerableOfTableDto": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TableDto"
            },
            "nullable": true
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfIEnumerableOfUserGroupDto": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/UserGroupDto"
            },
            "nullable": true
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfIEnumerableOfVariantDto": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/VariantDto"
            },
            "nullable": true
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfImageRootPathDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ImageRootPathDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfLocationDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/LocationDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfLocationTypeDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/LocationTypeDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfMobileDeviceDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/MobileDeviceDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfMobileUserDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/MobileUserDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfOrderCreateResultDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/OrderCreateResultDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfOrderDetailCreateResultDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/OrderDetailCreateResultDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfOrderDetailStatusUpdateResultDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/OrderDetailStatusUpdateResultDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfOrderDetailUpdateResultDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/OrderDetailUpdateResultDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfOrderDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/OrderDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfOrderStatusNotifyDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/OrderStatusNotifyDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfOrderStatusUpdateResultDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/OrderStatusUpdateResultDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfPrinterDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/PrinterDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfProductDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ProductDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfProductGroupDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ProductGroupDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfProductImageDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ProductImageDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfProductImageUploadResponseDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ProductImageUploadResponseDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfProductLocationDeviceRouteDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ProductLocationDeviceRouteDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfProductVariantTypeDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ProductVariantTypeDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfProductVariantValueDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ProductVariantValueDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfSectionDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/SectionDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfTableDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/TableDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfUserGroupDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/UserGroupDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfVariantDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/VariantDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "IDataResponseOfVariantValueDto": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/VariantValueDto"
          },
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "ImageRootPathCreateDto": {
        "required": [
          "baseUrl",
          "folderPath"
        ],
        "type": "object",
        "properties": {
          "baseUrl": {
            "type": "string"
          },
          "folderPath": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "headersJson": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "ImageRootPathDto": {
        "required": [
          "baseUrl",
          "folderPath"
        ],
        "type": "object",
        "properties": {
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "isActive": {
            "type": "boolean"
          },
          "baseUrl": {
            "type": "string"
          },
          "folderPath": {
            "type": "string"
          },
          "headersJson": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "ImageRootPathUpdateDto": {
        "required": [
          "baseUrl",
          "folderPath"
        ],
        "type": "object",
        "properties": {
          "baseUrl": {
            "type": "string"
          },
          "folderPath": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          }
        }
      },
      "IResponse": {
        "type": "object",
        "properties": {
          "isSuccess": {
            "type": "boolean"
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "LocationCreateDto": {
        "required": [
          "name"
        ],
        "type": "object",
        "properties": {
          "printType": {
            "$ref": "#/components/schemas/PrintType"
          },
          "operationMode": {
            "$ref": "#/components/schemas/OperatingMode"
          },
          "locationTypeId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "name": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          }
        }
      },
      "LocationDto": {
        "required": [
          "name",
          "id"
        ],
        "type": "object",
        "properties": {
          "printType": {
            "$ref": "#/components/schemas/PrintType"
          },
          "operatingMode": {
            "$ref": "#/components/schemas/OperatingMode"
          },
          "type": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/LocationTypeDto"
              }
            ],
            "nullable": true
          },
          "isActive": {
            "type": "boolean"
          },
          "name": {
            "type": "string"
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "LocationTypeCreateDto": {
        "required": [
          "type"
        ],
        "type": "object",
        "properties": {
          "type": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          }
        }
      },
      "LocationTypeDto": {
        "required": [
          "type",
          "id"
        ],
        "type": "object",
        "properties": {
          "type": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "LocationTypeUpdateDto": {
        "required": [
          "type"
        ],
        "type": "object",
        "properties": {
          "type": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          }
        }
      },
      "LocationUpdateDto": {
        "type": "object",
        "properties": {
          "printType": {
            "$ref": "#/components/schemas/PrintType"
          },
          "operatingMode": {
            "$ref": "#/components/schemas/OperatingMode"
          },
          "locationTypeId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "isActive": {
            "type": "boolean"
          },
          "name": {
            "type": "string"
          }
        }
      },
      "LogMessage": {
        "type": "object",
        "properties": {
          "date": {
            "type": "string",
            "format": "date-time"
          },
          "duration": {
            "pattern": "^-?(\\d+\\.)?\\d{2}:\\d{2}:\\d{2}(\\.\\d{1,7})?$",
            "type": "string"
          },
          "threadId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "threadName": {
            "type": "string",
            "nullable": true
          },
          "messageType": {
            "$ref": "#/components/schemas/LogMessageType"
          },
          "messageText": {
            "type": "string",
            "nullable": true
          },
          "parameterCount": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "error": {
            "type": "string",
            "nullable": true
          },
          "parameterList": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/LogMessageParameter"
            },
            "nullable": true
          },
          "durationTicks": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int64"
          },
          "parameters": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/LogMessageParameter"
            },
            "nullable": true
          }
        }
      },
      "LogMessageParameter": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "nullable": true
          },
          "value": { }
        }
      },
      "LogMessageType": {
        "type": "integer"
      },
      "MobileDeviceCreateDto": {
        "required": [
          "deviceId",
          "name"
        ],
        "type": "object",
        "properties": {
          "deviceId": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "locationId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "mobileDeviceType": {
            "$ref": "#/components/schemas/MobileDeviceType"
          },
          "printers": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DevicePrinterCreateDto"
            }
          }
        }
      },
      "MobileDeviceDto": {
        "required": [
          "name",
          "deviceId",
          "id"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "deviceId": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "printers": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DevicePrinterForDeviceDto"
            }
          },
          "deviceType": {
            "$ref": "#/components/schemas/MobileDeviceType"
          },
          "location": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/LocationDto"
              }
            ],
            "nullable": true
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "MobileDeviceRegisterDto": {
        "required": [
          "deviceId",
          "name"
        ],
        "type": "object",
        "properties": {
          "deviceId": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "locationId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "deviceType": {
            "$ref": "#/components/schemas/MobileDeviceType"
          }
        }
      },
      "MobileDeviceType": {
        "type": "integer"
      },
      "MobileDeviceUpdateDto": {
        "required": [
          "name",
          "deviceId"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "deviceId": {
            "type": "string"
          },
          "mobileDeviceType": {
            "$ref": "#/components/schemas/MobileDeviceType"
          },
          "locationId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "MobileUserCreateDto": {
        "required": [
          "name",
          "surname",
          "password",
          "userName"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "surname": {
            "type": "string"
          },
          "password": {
            "type": "string"
          },
          "userName": {
            "type": "string"
          },
          "groupId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "isActive": {
            "type": "boolean"
          }
        }
      },
      "MobileUserDto": {
        "required": [
          "name",
          "surname",
          "userName",
          "id"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "surname": {
            "type": "string"
          },
          "userName": {
            "type": "string"
          },
          "group": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/UserGroupDto"
              }
            ],
            "nullable": true
          },
          "isActive": {
            "type": "boolean"
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "MobileUserUpdateDto": {
        "required": [
          "name",
          "surname",
          "password",
          "userName"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "surname": {
            "type": "string"
          },
          "password": {
            "type": "string"
          },
          "userName": {
            "type": "string"
          },
          "groupId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "isActive": {
            "type": "boolean"
          }
        }
      },
      "OperatingMode": {
        "type": "integer"
      },
      "OperationNotifyType": {
        "type": "integer"
      },
      "OrderCreateDto": {
        "type": "object",
        "properties": {
          "userId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "tableId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "details": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderDetailCreateDto"
            }
          }
        }
      },
      "OrderCreateResultDto": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "userId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "tableId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "status": {
            "$ref": "#/components/schemas/OrderStatus"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "details": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderDetailCreateResultDto"
            }
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "OrderDetailCreateDto": {
        "required": [
          "guestUuid",
          "description"
        ],
        "type": "object",
        "properties": {
          "productId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "amount": {
            "pattern": "^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$",
            "format": "double"
          },
          "guestUuid": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "orderTakenDeviceId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "productVariants": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderDetailVariantValueCreateDto"
            }
          }
        }
      },
      "OrderDetailCreateResultDto": {
        "required": [
          "description",
          "id"
        ],
        "type": "object",
        "properties": {
          "userId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "productId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "guest": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/GuestDto"
              }
            ],
            "nullable": true
          },
          "amount": {
            "pattern": "^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$",
            "format": "double"
          },
          "description": {
            "type": "string"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "status": {
            "$ref": "#/components/schemas/OrderStatus"
          },
          "orderTakenDeviceId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "orderPreparedDeviceId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "productVariants": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderDetailVariantValueResultDto"
            }
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "OrderDetailDto": {
        "required": [
          "description",
          "id"
        ],
        "type": "object",
        "properties": {
          "order": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/OrderDto"
              }
            ],
            "nullable": true
          },
          "guest": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/GuestDto"
              }
            ],
            "nullable": true
          },
          "product": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/ProductDto"
              }
            ],
            "nullable": true
          },
          "amount": {
            "pattern": "^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$",
            "format": "double"
          },
          "status": {
            "$ref": "#/components/schemas/OrderStatus"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "orderTakenDevice": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/MobileDeviceDto"
              }
            ],
            "nullable": true
          },
          "orderPreparedDevice": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/MobileDeviceDto"
              }
            ],
            "nullable": true
          },
          "description": {
            "type": "string"
          },
          "productVariants": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderDetailVariantValueDto"
            }
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "OrderDetailForMobileDeviceDto": {
        "required": [
          "username",
          "description",
          "productName",
          "locationName",
          "takenDeviceId",
          "preparedDeviceId",
          "id"
        ],
        "type": "object",
        "properties": {
          "orderId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "tableId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "tableNo": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "productId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "amount": {
            "pattern": "^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$",
            "format": "double"
          },
          "username": {
            "type": "string"
          },
          "userId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "status": {
            "$ref": "#/components/schemas/OrderStatus"
          },
          "description": {
            "type": "string"
          },
          "productName": {
            "type": "string"
          },
          "locationName": {
            "type": "string"
          },
          "takenDeviceId": {
            "type": "string"
          },
          "preparedDeviceId": {
            "type": "string"
          },
          "variants": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderDetailVariantValueResultDto"
            }
          },
          "operationNotifyType": {
            "$ref": "#/components/schemas/OperationNotifyType"
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "OrderDetailStatusUpdateDto": {
        "type": "object",
        "properties": {
          "userId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "status": {
            "$ref": "#/components/schemas/OrderStatus"
          }
        }
      },
      "OrderDetailStatusUpdateResultDto": {
        "type": "object",
        "properties": {
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "userId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "status": {
            "$ref": "#/components/schemas/OrderStatus"
          }
        }
      },
      "OrderDetailUpdateDto": {
        "required": [
          "description"
        ],
        "type": "object",
        "properties": {
          "description": {
            "type": "string"
          },
          "amount": {
            "pattern": "^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$",
            "format": "double"
          },
          "variantValueIds": {
            "type": "array",
            "items": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          }
        }
      },
      "OrderDetailUpdateResultDto": {
        "required": [
          "description",
          "locationName",
          "preparedDeviceId"
        ],
        "type": "object",
        "properties": {
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "productId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "description": {
            "type": "string"
          },
          "amount": {
            "pattern": "^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$",
            "format": "double"
          },
          "locationName": {
            "type": "string"
          },
          "preparedDeviceId": {
            "type": "string"
          }
        }
      },
      "OrderDetailVariantValueCreateDto": {
        "type": "object",
        "properties": {
          "variantValueId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "OrderDetailVariantValueDto": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "orderDetail": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/OrderDetailDto"
              }
            ],
            "nullable": true
          },
          "variantValue": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/ProductVariantValueDto"
              }
            ],
            "nullable": true
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "OrderDetailVariantValueResultDto": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "variantValue": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/ProductVariantValueResultDto"
              }
            ],
            "nullable": true
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "OrderDto": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "location": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/LocationDto"
              }
            ],
            "nullable": true
          },
          "table": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/TableDto"
              }
            ],
            "nullable": true
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "createdBy": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/MobileUserDto"
              }
            ],
            "nullable": true
          },
          "status": {
            "$ref": "#/components/schemas/OrderStatus"
          },
          "details": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrderDetailDto"
            }
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "OrderStatus": {
        "type": "integer"
      },
      "OrderStatusNotifyDto": {
        "type": "object",
        "properties": {
          "orderId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "userId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "tableId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "tableNo": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "status": {
            "$ref": "#/components/schemas/OrderStatus"
          },
          "updatedOn": {
            "type": "string",
            "format": "date-time"
          },
          "description": {
            "type": "string",
            "nullable": true
          },
          "detailIds": {
            "type": "array",
            "items": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          },
          "operationNotifyType": {
            "$ref": "#/components/schemas/OperationNotifyType"
          }
        }
      },
      "OrderStatusUpdateDto": {
        "type": "object",
        "properties": {
          "userId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "status": {
            "$ref": "#/components/schemas/OrderStatus"
          }
        }
      },
      "OrderStatusUpdateResultDto": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "userId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "status": {
            "$ref": "#/components/schemas/OrderStatus"
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "PrinterCreateDto": {
        "required": [
          "name"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          }
        }
      },
      "PrinterDto": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "PrinterUpdateDto": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          }
        }
      },
      "PrintType": {
        "type": "integer"
      },
      "ProductCreateDto": {
        "required": [
          "displayColor",
          "description",
          "name"
        ],
        "type": "object",
        "properties": {
          "preparationTime": {
            "pattern": "^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$",
            "format": "double"
          },
          "halfSizeEnabled": {
            "type": "boolean"
          },
          "displayColor": {
            "type": "string"
          },
          "price": {
            "pattern": "^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$",
            "format": "double"
          },
          "description": {
            "type": "string"
          },
          "productGroupId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "name": {
            "type": "string"
          },
          "orderNumber": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "isActive": {
            "type": "boolean"
          },
          "locations": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductLocationDto"
            }
          },
          "images": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductImageCreateDto"
            }
          },
          "variants": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductVariantCreateDto"
            }
          }
        }
      },
      "ProductDto": {
        "required": [
          "description",
          "name",
          "id"
        ],
        "type": "object",
        "properties": {
          "preparationTime": {
            "pattern": "^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$",
            "format": "double"
          },
          "halfSizeEnabled": {
            "type": "boolean"
          },
          "isActive": {
            "type": "boolean"
          },
          "displayColor": {
            "type": "string",
            "nullable": true
          },
          "itemCount": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "price": {
            "pattern": "^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$",
            "format": "double"
          },
          "description": {
            "type": "string"
          },
          "group": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/ProductGroupDto"
              }
            ],
            "nullable": true
          },
          "name": {
            "type": "string"
          },
          "orderNumber": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "variants": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductVariantDto"
            }
          },
          "locationDeviceRoutes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductLocationDeviceRouteDto"
            }
          },
          "productImages": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductImageDto"
            }
          },
          "productNewImages": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductImageNewDto"
            }
          },
          "productLocations": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductLocationDto"
            }
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "ProductGroupCreateDto": {
        "required": [
          "name"
        ],
        "type": "object",
        "properties": {
          "defaultDisplayColor": {
            "type": "string",
            "nullable": true
          },
          "name": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "parentGroupId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32",
            "nullable": true
          },
          "orderNumber": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32",
            "nullable": true
          }
        }
      },
      "ProductGroupDto": {
        "required": [
          "name",
          "defaultDisplayColor",
          "id"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "defaultDisplayColor": {
            "type": "string"
          },
          "parentGroup": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/ProductGroupDto"
              }
            ],
            "nullable": true
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "ProductGroupUpdateDto": {
        "required": [
          "name"
        ],
        "type": "object",
        "properties": {
          "isActive": {
            "type": "boolean"
          },
          "defaultDisplayColor": {
            "type": "string",
            "nullable": true
          },
          "name": {
            "type": "string"
          },
          "parentGroupId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32",
            "nullable": true
          },
          "orderNumber": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32",
            "nullable": true
          }
        }
      },
      "ProductGroupWithSubGroupsDto": {
        "required": [
          "name",
          "defaultDisplayColor",
          "id"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "defaultDisplayColor": {
            "type": "string"
          },
          "subGroups": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductGroupWithSubGroupsDto"
            }
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "ProductImageCreateDto": {
        "required": [
          "imageBase64"
        ],
        "type": "object",
        "properties": {
          "type": {
            "$ref": "#/components/schemas/ProductImageType"
          },
          "imageBase64": {
            "type": "string",
            "format": "byte"
          }
        }
      },
      "ProductImageDto": {
        "required": [
          "type",
          "imageBase64",
          "id"
        ],
        "type": "object",
        "properties": {
          "type": {
            "$ref": "#/components/schemas/ProductImageType"
          },
          "imageBase64": {
            "type": "string",
            "format": "byte"
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "ProductImageNewDto": {
        "required": [
          "filePath",
          "fileName"
        ],
        "type": "object",
        "properties": {
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "filePath": {
            "type": "string"
          },
          "fileName": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "type": {
            "$ref": "#/components/schemas/ProductImageType"
          },
          "productId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "imageRootPath": {
            "$ref": "#/components/schemas/ImageRootPathDto"
          },
          "imageUrl": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "ProductImageNewUpdateDto": {
        "type": "object",
        "properties": {
          "isActive": {
            "type": "boolean"
          },
          "imageId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "ProductImageType": {
        "type": "integer"
      },
      "ProductImageTypeUrlDto": {
        "type": "object",
        "properties": {
          "imageId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "imageType": {
            "$ref": "#/components/schemas/ProductImageType"
          },
          "imageUrl": {
            "type": "string",
            "nullable": true
          },
          "productId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "ProductImageUpdateDto": {
        "required": [
          "imageBase64",
          "id"
        ],
        "type": "object",
        "properties": {
          "type": {
            "$ref": "#/components/schemas/ProductImageType"
          },
          "imageBase64": {
            "type": "string",
            "format": "byte"
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "ProductImageUploadDto": {
        "required": [
          "productId",
          "imageRootPathId",
          "imageBase64",
          "year"
        ],
        "type": "object",
        "properties": {
          "productId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "imageRootPathId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "imageBase64": {
            "type": "string"
          },
          "year": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "isActive": {
            "type": "boolean"
          }
        }
      },
      "ProductImageUploadResponseDto": {
        "type": "object",
        "properties": {
          "productId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "imageUrls": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "ProductLocationDeviceRouteDto": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "device": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/MobileDeviceDto"
              }
            ],
            "nullable": true
          },
          "product": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/ProductDto"
              }
            ],
            "nullable": true
          },
          "location": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/LocationDto"
              }
            ],
            "nullable": true
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "ProductLocationDeviceRouteSaveDto": {
        "type": "object",
        "properties": {
          "locationId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "deviceId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "productId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "ProductLocationDto": {
        "type": "object",
        "properties": {
          "locationId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "locationName": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "ProductsByGroupForLocationDto": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "locationId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "groupId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "ProductsForLocationDto": {
        "required": [
          "name",
          "description",
          "id"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "price": {
            "pattern": "^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$",
            "format": "double"
          },
          "itemCount": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "orderNumber": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "description": {
            "type": "string"
          },
          "displayColor": {
            "type": "string",
            "nullable": true
          },
          "halfSizeEnabled": {
            "type": "boolean"
          },
          "preparationTime": {
            "pattern": "^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$",
            "format": "double"
          },
          "variants": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/VariantValueDto"
            }
          },
          "groupIds": {
            "type": "array",
            "items": {
              "pattern": "^-?(?:0|[1-9]\\d*)$",
              "format": "int32"
            }
          },
          "imageBase64List": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "productNewImages": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductImageNewDto"
            }
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "ProductUpdateDto": {
        "required": [
          "name",
          "description"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "price": {
            "pattern": "^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$",
            "format": "double"
          },
          "orderNumber": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "productGroupId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "description": {
            "type": "string"
          },
          "displayColor": {
            "type": "string",
            "nullable": true
          },
          "halfSizeEnabled": {
            "type": "boolean"
          },
          "preparationTime": {
            "pattern": "^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$",
            "format": "double"
          },
          "locations": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductLocationDto"
            }
          },
          "images": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductImageUpdateDto"
            }
          },
          "variants": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductVariantCreateDto"
            }
          }
        }
      },
      "ProductVariantCreateDto": {
        "type": "object",
        "properties": {
          "variantValueId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "ProductVariantDto": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "value": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/ProductVariantValueDto"
              }
            ],
            "nullable": true
          },
          "product": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/ProductDto"
              }
            ],
            "nullable": true
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "ProductVariantTypeCreateDto": {
        "type": "object",
        "properties": {
          "isActive": {
            "type": "boolean"
          },
          "name": {
            "type": "string"
          },
          "values": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductVariantValueCreateDto"
            }
          }
        }
      },
      "ProductVariantTypeDto": {
        "required": [
          "name",
          "id"
        ],
        "type": "object",
        "properties": {
          "isActive": {
            "type": "boolean"
          },
          "name": {
            "type": "string"
          },
          "values": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductVariantValueDto"
            }
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "ProductVariantTypeResultDto": {
        "required": [
          "name"
        ],
        "type": "object",
        "properties": {
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "name": {
            "type": "string"
          }
        }
      },
      "ProductVariantTypeUpdateDto": {
        "required": [
          "name"
        ],
        "type": "object",
        "properties": {
          "isActive": {
            "type": "boolean"
          },
          "name": {
            "type": "string"
          }
        }
      },
      "ProductVariantValueCreateDto": {
        "required": [
          "value"
        ],
        "type": "object",
        "properties": {
          "isActive": {
            "type": "boolean"
          },
          "value": {
            "type": "string"
          }
        }
      },
      "ProductVariantValueDto": {
        "required": [
          "value",
          "id"
        ],
        "type": "object",
        "properties": {
          "isActive": {
            "type": "boolean"
          },
          "type": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/ProductVariantTypeDto"
              }
            ],
            "nullable": true
          },
          "value": {
            "type": "string"
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "ProductVariantValueResultDto": {
        "required": [
          "value"
        ],
        "type": "object",
        "properties": {
          "type": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/ProductVariantTypeResultDto"
              }
            ],
            "nullable": true
          },
          "value": {
            "type": "string"
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "ProductVariantValueUpdateDto": {
        "type": "object",
        "properties": {
          "isActive": {
            "type": "boolean"
          },
          "value": {
            "type": "string"
          }
        }
      },
      "SectionCreateDto": {
        "required": [
          "name"
        ],
        "type": "object",
        "properties": {
          "locationId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "name": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "tables": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TableCreateDto"
            }
          }
        }
      },
      "SectionDto": {
        "required": [
          "name",
          "id"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "location": {
            "type": "object",
            "oneOf": [
              {
                "$ref": "#/components/schemas/LocationDto"
              }
            ],
            "nullable": true
          },
          "tables": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TableDto"
            }
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "SectionUpdateDto": {
        "required": [
          "name"
        ],
        "type": "object",
        "properties": {
          "isActive": {
            "type": "boolean"
          },
          "locationId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "name": {
            "type": "string"
          }
        }
      },
      "TableCreateDto": {
        "type": "object",
        "properties": {
          "no": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "isActive": {
            "type": "boolean"
          }
        }
      },
      "TableDto": {
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "isActive": {
            "type": "boolean"
          },
          "no": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "TableUpdateDto": {
        "type": "object",
        "properties": {
          "no": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "isActive": {
            "type": "boolean"
          }
        }
      },
      "UserGroupCreateDto": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          }
        }
      },
      "UserGroupDto": {
        "required": [
          "name",
          "id"
        ],
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          }
        }
      },
      "UserGroupUpdateDto": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          }
        }
      },
      "VariantDto": {
        "required": [
          "productName"
        ],
        "type": "object",
        "properties": {
          "productId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "productName": {
            "type": "string"
          },
          "variants": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/VariantValueDto"
            }
          }
        }
      },
      "VariantValueDto": {
        "required": [
          "value",
          "typeName"
        ],
        "type": "object",
        "properties": {
          "id": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "value": {
            "type": "string"
          },
          "typeId": {
            "pattern": "^-?(?:0|[1-9]\\d*)$",
            "format": "int32"
          },
          "typeName": {
            "type": "string"
          }
        }
      }
    }
  },
  "tags": [
    {
      "name": "Gural.MOS.ApiHost"
    },
    {
      "name": "XpoLogStash"
    },
    {
      "name": "UserGroups"
    },
    {
      "name": "Users"
    },
    {
      "name": "Report"
    },
    {
      "name": "ProductGroups"
    },
    {
      "name": "ProductLocationDeviceRoutes"
    },
    {
      "name": "Products"
    },
    {
      "name": "ProductVariantTypes"
    },
    {
      "name": "ProductImages"
    },
    {
      "name": "Orders"
    },
    {
      "name": "Locations"
    },
    {
      "name": "LocationTypes"
    },
    {
      "name": "Sections"
    },
    {
      "name": "MobileDevices"
    },
    {
      "name": "Printers"
    },
    {
      "name": "Auth"
    }
  ]
}