-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorders-api.json
1 lines (1 loc) · 2.04 KB
/
orders-api.json
1
{"openapi":"3.0.1","info":{"title":"OpenAPI definition","version":"v0"},"servers":[{"url":"https://bravo-ch4mp:4202","description":"Generated server url"}],"paths":{"/orders":{"get":{"tags":["orders-controller"],"operationId":"getAll","responses":{"404":{"description":"Not Found"},"400":{"description":"Bad Request","content":{"*/*":{"schema":{"type":"string"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/OrderResponseDto"}}}}}}},"post":{"tags":["orders-controller"],"operationId":"placeOrder","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderCreationRequestDto"}}},"required":true},"responses":{"404":{"description":"Not Found"},"400":{"description":"Bad Request","content":{"*/*":{"schema":{"type":"string"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"integer","format":"int64"}}}}}}},"/orders/{id}":{"get":{"tags":["orders-controller"],"operationId":"getById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"404":{"description":"Not Found"},"400":{"description":"Bad Request","content":{"*/*":{"schema":{"type":"string"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/OrderResponseDto"}}}}}},"delete":{"tags":["orders-controller"],"operationId":"deleteById","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer","format":"int64"}}],"responses":{"404":{"description":"Not Found"},"400":{"description":"Bad Request","content":{"*/*":{"schema":{"type":"string"}}}},"200":{"description":"OK","content":{"*/*":{"schema":{"type":"object"}}}}}}}},"components":{"schemas":{"OrderCreationRequestDto":{"required":["drink"],"type":"object","properties":{"drink":{"type":"string"},"table":{"type":"string"}}},"OrderResponseDto":{"type":"object","properties":{"id":{"type":"integer","format":"int64"},"drink":{"type":"string"},"owner":{"type":"string"},"table":{"type":"string"},"createdOn":{"type":"integer","format":"int64"}}}}}}