{"openapi":"3.1.1","info":{"title":"EasyOnlineStore.API | v1","version":"1.0.0"},"servers":[{"url":"https://localhost:7207/"}],"paths":{"/api/Auth/register":{"post":{"tags":["Auth"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RegisterRequest"}},"text/json":{"schema":{"$ref":"#/components/schemas/RegisterRequest"}},"application/*+json":{"schema":{"$ref":"#/components/schemas/RegisterRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/UserResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/UserResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/UserResponse"}}}}}}},"/api/Auth/login":{"post":{"tags":["Auth"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LoginRequest"}},"text/json":{"schema":{"$ref":"#/components/schemas/LoginRequest"}},"application/*+json":{"schema":{"$ref":"#/components/schemas/LoginRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"string"}},"application/json":{"schema":{"type":"string"}},"text/json":{"schema":{"type":"string"}}}}}}},"/api/Carts":{"get":{"tags":["Carts"],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/CartResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/CartResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/CartResponse"}}}}},"security":[{"Bearer":[]}]}},"/api/Carts/items/add":{"post":{"tags":["Carts"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CartAddItemRequest"}},"text/json":{"schema":{"$ref":"#/components/schemas/CartAddItemRequest"}},"application/*+json":{"schema":{"$ref":"#/components/schemas/CartAddItemRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/CartResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/CartResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/CartResponse"}}}}},"security":[{"Bearer":[]}]}},"/api/Carts/items/update":{"patch":{"tags":["Carts"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CartItemUpdateRequest"}},"text/json":{"schema":{"$ref":"#/components/schemas/CartItemUpdateRequest"}},"application/*+json":{"schema":{"$ref":"#/components/schemas/CartItemUpdateRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/CartResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/CartResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/CartResponse"}}}}},"security":[{"Bearer":[]}]}},"/api/Carts/items/delete/{productId}":{"delete":{"tags":["Carts"],"parameters":[{"name":"productId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/CartResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/CartResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/CartResponse"}}}}},"security":[{"Bearer":[]}]}},"/api/Carts/items/clear":{"post":{"tags":["Carts"],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/CartResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/CartResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/CartResponse"}}}}},"security":[{"Bearer":[]}]}},"/api/Carts/all":{"get":{"tags":["Carts"],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CartResponse"}}},"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CartResponse"}}},"text/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CartResponse"}}}}}},"security":[{"Bearer":[]}]}},"/api/Carts/create/{userId}":{"post":{"tags":["Carts"],"parameters":[{"name":"userId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/CartResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/CartResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/CartResponse"}}}}},"security":[{"Bearer":[]}]}},"/api/Carts/{userId}":{"delete":{"tags":["Carts"],"parameters":[{"name":"userId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK"}},"security":[{"Bearer":[]}]}},"/api/Categories":{"get":{"tags":["Categories"],"parameters":[{"name":"page","in":"query","schema":{"pattern":"^-?(?:0|[1-9]\\d*)$","type":["integer","string"],"format":"int32","default":1}},{"name":"pageSize","in":"query","schema":{"pattern":"^-?(?:0|[1-9]\\d*)$","type":["integer","string"],"format":"int32","default":10}}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CategoryResponse"}}},"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CategoryResponse"}}},"text/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CategoryResponse"}}}}}}},"post":{"tags":["Categories"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CategoryCreateRequest"}},"text/json":{"schema":{"$ref":"#/components/schemas/CategoryCreateRequest"}},"application/*+json":{"schema":{"$ref":"#/components/schemas/CategoryCreateRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/CategoryResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/CategoryResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/CategoryResponse"}}}}},"security":[{"Bearer":[]}]}},"/api/Categories/{id}":{"get":{"tags":["Categories"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/CategoryResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/CategoryResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/CategoryResponse"}}}}}},"delete":{"tags":["Categories"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK"}},"security":[{"Bearer":[]}]}},"/api/Orders/{orderId}":{"get":{"tags":["Orders"],"parameters":[{"name":"orderId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/OrderResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/OrderResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/OrderResponse"}}}}},"security":[{"Bearer":[]}]}},"/api/Orders":{"get":{"tags":["Orders"],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/OrderResponse"}}},"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/OrderResponse"}}},"text/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/OrderResponse"}}}}}},"security":[{"Bearer":[]}]}},"/api/Orders/create":{"post":{"tags":["Orders"],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/OrderResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/OrderResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/OrderResponse"}}}}},"security":[{"Bearer":[]}]}},"/api/Orders/cancel/{orderId}":{"put":{"tags":["Orders"],"parameters":[{"name":"orderId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/OrderResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/OrderResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/OrderResponse"}}}}},"security":[{"Bearer":[]}]}},"/api/Orders/admin":{"get":{"tags":["Orders"],"parameters":[{"name":"page","in":"query","schema":{"pattern":"^-?(?:0|[1-9]\\d*)$","type":["integer","string"],"format":"int32","default":1}},{"name":"pageSize","in":"query","schema":{"pattern":"^-?(?:0|[1-9]\\d*)$","type":["integer","string"],"format":"int32","default":10}}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/OrderResponse"}}},"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/OrderResponse"}}},"text/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/OrderResponse"}}}}}},"security":[{"Bearer":[]}]}},"/api/Orders/all":{"get":{"tags":["Orders"],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/OrderResponse"}}},"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/OrderResponse"}}},"text/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/OrderResponse"}}}}}},"security":[{"Bearer":[]}]}},"/api/Orders/admin/{orderId}":{"patch":{"tags":["Orders"],"parameters":[{"name":"orderId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"status","in":"query","schema":{"$ref":"#/components/schemas/OrderStatus"}},{"name":"userId","in":"query","schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/OrderResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/OrderResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/OrderResponse"}}}}},"security":[{"Bearer":[]}]},"delete":{"tags":["Orders"],"parameters":[{"name":"orderId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"userId","in":"query","schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"boolean"}},"application/json":{"schema":{"type":"boolean"}},"text/json":{"schema":{"type":"boolean"}}}}},"security":[{"Bearer":[]}]}},"/api/Orders/admin/all":{"delete":{"tags":["Orders"],"parameters":[{"name":"userId","in":"query","schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"boolean"}},"application/json":{"schema":{"type":"boolean"}},"text/json":{"schema":{"type":"boolean"}}}}},"security":[{"Bearer":[]}]}},"/api/Products/all":{"get":{"tags":["Products"],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProductResponse"}}},"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProductResponse"}}},"text/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProductResponse"}}}}}}}},"/api/Products/{id}":{"get":{"tags":["Products"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/ProductResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/ProductResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/ProductResponse"}}}}}},"patch":{"tags":["Products"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductUpdateRequest"}},"text/json":{"schema":{"$ref":"#/components/schemas/ProductUpdateRequest"}},"application/*+json":{"schema":{"$ref":"#/components/schemas/ProductUpdateRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/ProductResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/ProductResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/ProductResponse"}}}}},"security":[{"Bearer":[]}]},"delete":{"tags":["Products"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK"}},"security":[{"Bearer":[]}]}},"/api/Products":{"get":{"tags":["Products"],"parameters":[{"name":"page","in":"query","schema":{"pattern":"^-?(?:0|[1-9]\\d*)$","type":["integer","string"],"format":"int32","default":1}},{"name":"pageSize","in":"query","schema":{"pattern":"^-?(?:0|[1-9]\\d*)$","type":["integer","string"],"format":"int32","default":10}}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProductResponse"}}},"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProductResponse"}}},"text/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProductResponse"}}}}}}},"post":{"tags":["Products"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductCreateRequest"}},"text/json":{"schema":{"$ref":"#/components/schemas/ProductCreateRequest"}},"application/*+json":{"schema":{"$ref":"#/components/schemas/ProductCreateRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/ProductResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/ProductResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/ProductResponse"}}}}},"security":[{"Bearer":[]}]}},"/api/Products/my":{"get":{"tags":["Products"],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProductResponse"}}},"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProductResponse"}}},"text/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProductResponse"}}}}}},"security":[{"Bearer":[]}]}},"/api/Products/my/paged":{"get":{"tags":["Products"],"parameters":[{"name":"page","in":"query","schema":{"pattern":"^-?(?:0|[1-9]\\d*)$","type":["integer","string"],"format":"int32","default":1}},{"name":"pageSize","in":"query","schema":{"pattern":"^-?(?:0|[1-9]\\d*)$","type":["integer","string"],"format":"int32","default":10}}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProductResponse"}}},"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProductResponse"}}},"text/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProductResponse"}}}}}},"security":[{"Bearer":[]}]}},"/api/Products/{id}/images":{"post":{"tags":["Products"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductImageUploadRequest"}},"text/json":{"schema":{"$ref":"#/components/schemas/ProductImageUploadRequest"}},"application/*+json":{"schema":{"$ref":"#/components/schemas/ProductImageUploadRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/ProductImageResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/ProductImageResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/ProductImageResponse"}}}}},"security":[{"Bearer":[]}]}},"/api/Products/{id}/images/bulk":{"post":{"tags":["Products"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProductImageUploadRequest"}}},"text/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProductImageUploadRequest"}}},"application/*+json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProductImageUploadRequest"}}}},"required":true},"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProductImageResponse"}}},"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProductImageResponse"}}},"text/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProductImageResponse"}}}}}},"security":[{"Bearer":[]}]}},"/api/Products/{id}/images/{imageId}":{"delete":{"tags":["Products"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"imageId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK"}},"security":[{"Bearer":[]}]}},"/api/Users/profile":{"get":{"tags":["Users"],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/UserProfileResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/UserProfileResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/UserProfileResponse"}}}}},"security":[{"Bearer":[]}]},"put":{"tags":["Users"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateProfileRequest"}},"text/json":{"schema":{"$ref":"#/components/schemas/UpdateProfileRequest"}},"application/*+json":{"schema":{"$ref":"#/components/schemas/UpdateProfileRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/UserProfileResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/UserProfileResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/UserProfileResponse"}}}}},"security":[{"Bearer":[]}]}},"/api/Users/change-password":{"post":{"tags":["Users"],"requestBody":{"content":{"application/json":{"schema":{"type":"string"}},"text/json":{"schema":{"type":"string"}},"application/*+json":{"schema":{"type":"string"}}},"required":true},"responses":{"200":{"description":"OK"}},"security":[{"Bearer":[]}]}},"/api/Users/{id}":{"get":{"tags":["Users"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/UserResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/UserResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/UserResponse"}}}}},"security":[{"Bearer":[]}]},"delete":{"tags":["Users"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK"}},"security":[{"Bearer":[]}]}},"/api/Users/all":{"get":{"tags":["Users"],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UserResponse"}}},"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UserResponse"}}},"text/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UserResponse"}}}}}},"security":[{"Bearer":[]}]}},"/api/Users/{id}/lock":{"post":{"tags":["Users"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK"}},"security":[{"Bearer":[]}]}},"/api/Users/{id}/unlock":{"post":{"tags":["Users"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK"}},"security":[{"Bearer":[]}]}},"/api/Users/{id}/role":{"put":{"tags":["Users"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateRoleRequest"}},"text/json":{"schema":{"$ref":"#/components/schemas/UpdateRoleRequest"}},"application/*+json":{"schema":{"$ref":"#/components/schemas/UpdateRoleRequest"}}},"required":true},"responses":{"200":{"description":"OK"}},"security":[{"Bearer":[]}]}},"/api/Users/{id}/roles":{"get":{"tags":["Users"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"array","items":{"type":"string"}}},"application/json":{"schema":{"type":"array","items":{"type":"string"}}},"text/json":{"schema":{"type":"array","items":{"type":"string"}}}}}},"security":[{"Bearer":[]}]}},"/api/Warehouses/{warehouseId}":{"get":{"tags":["Warehouses"],"parameters":[{"name":"warehouseId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/WarehouseResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/WarehouseResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/WarehouseResponse"}}}}}},"patch":{"tags":["Warehouses"],"parameters":[{"name":"warehouseId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WarehouseUpdateRequest"}},"text/json":{"schema":{"$ref":"#/components/schemas/WarehouseUpdateRequest"}},"application/*+json":{"schema":{"$ref":"#/components/schemas/WarehouseUpdateRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/WarehouseResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/WarehouseResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/WarehouseResponse"}}}}},"security":[{"Bearer":[]}]},"delete":{"tags":["Warehouses"],"parameters":[{"name":"warehouseId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK"}},"security":[{"Bearer":[]}]}},"/api/Warehouses/user/{userId}":{"get":{"tags":["Warehouses"],"parameters":[{"name":"userId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/WarehouseResponse"}}},"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/WarehouseResponse"}}},"text/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/WarehouseResponse"}}}}}}}},"/api/Warehouses/my":{"get":{"tags":["Warehouses"],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/WarehouseResponse"}}},"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/WarehouseResponse"}}},"text/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/WarehouseResponse"}}}}}},"security":[{"Bearer":[]}]}},"/api/Warehouses/my/{warehouseId}":{"get":{"tags":["Warehouses"],"parameters":[{"name":"warehouseId","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/WarehouseResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/WarehouseResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/WarehouseResponse"}}}}},"security":[{"Bearer":[]}]}},"/api/Warehouses":{"post":{"tags":["Warehouses"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WarehouseCreateRequest"}},"text/json":{"schema":{"$ref":"#/components/schemas/WarehouseCreateRequest"}},"application/*+json":{"schema":{"$ref":"#/components/schemas/WarehouseCreateRequest"}}},"required":true},"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"$ref":"#/components/schemas/WarehouseResponse"}},"application/json":{"schema":{"$ref":"#/components/schemas/WarehouseResponse"}},"text/json":{"schema":{"$ref":"#/components/schemas/WarehouseResponse"}}}}},"security":[{"Bearer":[]}]},"get":{"tags":["Warehouses"],"parameters":[{"name":"page","in":"query","schema":{"pattern":"^-?(?:0|[1-9]\\d*)$","type":["integer","string"],"format":"int32","default":1}},{"name":"pageSize","in":"query","schema":{"pattern":"^-?(?:0|[1-9]\\d*)$","type":["integer","string"],"format":"int32","default":10}}],"responses":{"200":{"description":"OK","content":{"text/plain":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/WarehouseResponse"}}},"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/WarehouseResponse"}}},"text/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/WarehouseResponse"}}}}}},"security":[{"Bearer":[]}]}},"/api/Warehouses/my/close":{"post":{"tags":["Warehouses"],"responses":{"200":{"description":"OK"}},"security":[{"Bearer":[]}]}}},"components":{"schemas":{"CartAddItemRequest":{"type":"object","properties":{"productId":{"type":"string","format":"uuid"},"quantity":{"pattern":"^-?(?:0|[1-9]\\d*)$","type":["integer","string"],"format":"int32"}}},"CartItemResponse":{"type":"object","properties":{"productId":{"type":"string","format":"uuid"},"productName":{"type":"string"},"quantity":{"pattern":"^-?(?:0|[1-9]\\d*)$","type":["integer","string"],"format":"int32"},"unitPrice":{"pattern":"^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$","type":["number","string"],"format":"double"},"subTotal":{"pattern":"^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$","type":["number","string"],"format":"double"}}},"CartItemUpdateRequest":{"type":"object","properties":{"productId":{"type":"string","format":"uuid"},"quantity":{"pattern":"^-?(?:0|[1-9]\\d*)$","type":["integer","string"],"format":"int32"}}},"CartResponse":{"type":"object","properties":{"cartId":{"type":"string","format":"uuid"},"cartItems":{"type":"array","items":{"$ref":"#/components/schemas/CartItemResponse"}},"totalPrice":{"pattern":"^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$","type":["number","string"],"format":"double"}}},"CategoryCreateRequest":{"type":"object","properties":{"name":{"type":"string"}}},"CategoryResponse":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"categoryName":{"type":"string"},"categoryCode":{"type":"string"}}},"LoginRequest":{"type":"object","properties":{"email":{"type":"string"},"password":{"type":"string"}}},"OrderItemResponse":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"productId":{"type":"string","format":"uuid"},"productName":{"type":"string"},"quantity":{"pattern":"^-?(?:0|[1-9]\\d*)$","type":["integer","string"],"format":"int32"},"unitPrice":{"pattern":"^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$","type":["number","string"],"format":"double"},"warehouseId":{"type":"string","format":"uuid"},"subTotal":{"pattern":"^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$","type":["number","string"],"format":"double"}}},"OrderResponse":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"orderNumber":{"type":"string"},"createdDate":{"type":"string","format":"date-time"},"status":{"$ref":"#/components/schemas/OrderStatus"},"items":{"type":"array","items":{"$ref":"#/components/schemas/OrderItemResponse"}},"totalPrice":{"pattern":"^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$","type":["number","string"],"format":"double"}}},"OrderStatus":{"type":"integer"},"ProductCreateRequest":{"type":"object","properties":{"name":{"type":"string"},"description":{"type":"string"},"shortDescription":{"type":["null","string"]},"oldPrice":{"pattern":"^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$","type":["null","number","string"],"format":"double"},"stock":{"pattern":"^-?(?:0|[1-9]\\d*)$","type":["integer","string"],"format":"int32"},"price":{"pattern":"^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$","type":["number","string"],"format":"double"},"imageUrls":{"type":"array","items":{"$ref":"#/components/schemas/ProductImageRequest"}},"categoryId":{"type":"string","format":"uuid"},"warehouseId":{"type":"string","format":"uuid"}}},"ProductImageRequest":{"type":"object","properties":{"imageUrl":{"type":"string"}}},"ProductImageResponse":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"imageUrl":{"type":"string"}}},"ProductImageUploadRequest":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"productId":{"type":"string","format":"uuid"},"imageUrl":{"type":"string"}}},"ProductResponse":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"name":{"type":"string"},"description":{"type":"string"},"shortDescription":{"type":["null","string"]},"oldPrice":{"pattern":"^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$","type":["null","number","string"],"format":"double"},"stock":{"pattern":"^-?(?:0|[1-9]\\d*)$","type":["integer","string"],"format":"int32"},"sku":{"type":"string"},"rating":{"pattern":"^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$","type":["number","string"],"format":"double"},"price":{"pattern":"^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$","type":["number","string"],"format":"double"},"createdAt":{"type":"string","format":"date-time"},"updatedAt":{"type":["null","string"],"format":"date-time"},"images":{"type":"array","items":{"$ref":"#/components/schemas/ProductImageResponse"}},"warehouseId":{"type":"string","format":"uuid"}}},"ProductUpdateRequest":{"type":"object","properties":{"name":{"type":["null","string"]},"description":{"type":["null","string"]},"shortDescription":{"type":["null","string"]},"oldPrice":{"pattern":"^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$","type":["null","number","string"],"format":"double"},"stock":{"pattern":"^-?(?:0|[1-9]\\d*)$","type":["null","integer","string"],"format":"int32"},"price":{"pattern":"^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$","type":["null","number","string"],"format":"double"},"categoryId":{"type":["null","string"],"format":"uuid"},"warehouseId":{"type":["null","string"],"format":"uuid"},"imageUrls":{"type":"array","items":{"type":"string"}}}},"RegisterRequest":{"type":"object","properties":{"email":{"type":"string"},"firstName":{"type":"string"},"lastName":{"type":"string"},"password":{"type":"string"},"country":{"type":["null","string"]},"roles":{"type":"array","items":{"type":"string"}}}},"UpdateProfileRequest":{"type":"object","properties":{"firstName":{"type":["null","string"]},"lastName":{"type":["null","string"]},"address":{"type":["null","string"]},"city":{"type":["null","string"]},"country":{"type":["null","string"]}}},"UpdateRoleRequest":{"type":"object","properties":{"roles":{"type":"array","items":{"type":"string"}}}},"UserProfileResponse":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"firstName":{"type":"string"},"lastName":{"type":"string"},"email":{"type":"string"},"phoneNumber":{"type":"string"},"address":{"type":["null","string"]},"city":{"type":["null","string"]},"country":{"type":["null","string"]},"roles":{"type":"array","items":{"type":"string"}},"registrationDate":{"type":"string","format":"date-time"}}},"UserResponse":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"firstName":{"type":"string"},"lastName":{"type":"string"},"roles":{"type":"array","items":{"type":"string"}},"country":{"type":"string"},"registrationDate":{"type":"string","format":"date-time"}}},"WarehouseCreateRequest":{"type":"object","properties":{"name":{"type":"string"},"location":{"type":"string"},"adress":{"type":"string"},"phone":{"type":"string"},"isActive":{"type":"boolean"},"deliveryCost":{"pattern":"^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$","type":["number","string"],"format":"double"}}},"WarehouseProductResponse":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"name":{"type":"string"},"description":{"type":"string"},"shortDescription":{"type":["null","string"]},"price":{"pattern":"^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$","type":["number","string"],"format":"double"},"stock":{"pattern":"^-?(?:0|[1-9]\\d*)$","type":["integer","string"],"format":"int32"},"sku":{"type":"string"}}},"WarehouseResponse":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"name":{"type":"string"},"location":{"type":"string"},"adress":{"type":"string"},"phone":{"type":"string"},"isActive":{"type":"boolean"},"deliveryCost":{"pattern":"^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$","type":["number","string"],"format":"double"},"likesCount":{"pattern":"^-?(?:0|[1-9]\\d*)$","type":["integer","string"],"format":"int32"},"createdAt":{"type":"string","format":"date-time"},"products":{"type":"array","items":{"$ref":"#/components/schemas/WarehouseProductResponse"}}}},"WarehouseUpdateRequest":{"type":"object","properties":{"name":{"type":["null","string"]},"location":{"type":["null","string"]},"adress":{"type":["null","string"]},"phone":{"type":["null","string"]},"isActive":{"type":["null","boolean"]},"deliveryCost":{"pattern":"^-?(?:0|[1-9]\\d*)(?:\\.\\d+)?$","type":["null","number","string"],"format":"double"}}}},"securitySchemes":{"Bearer":{"type":"http","description":"Enter your JWT token. Example: eyJhbGciOi...","scheme":"bearer","bearerFormat":"JWT"}}},"tags":[{"name":"Auth"},{"name":"Carts"},{"name":"Categories"},{"name":"Orders"},{"name":"Products"},{"name":"Users"},{"name":"Warehouses"}]}