{"openapi":"3.0.0","info":{"version":"1.0.0","title":"Boundless Books REST API","description":"Boundless Books API is a backend application that provides various information about simple online book store."},"components":{"securitySchemes":{"Bearer":{"type":"http","scheme":"bearer"}},"schemas":{},"parameters":{}},"paths":{"/users":{"get":{"description":"Get all users","tags":["User"],"responses":{"200":{"description":"List of users"}}}},"/users/{username}":{"get":{"description":"Get detail user by slug","tags":["User"],"parameters":[{"schema":{"type":"string","minLength":3,"example":"elon_musk"},"required":true,"name":"username","in":"path"}],"responses":{"200":{"description":"User details"},"400":{"description":"User not found"}}}},"/users/auth/register":{"post":{"description":"Create new user","tags":["User"],"requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"username":{"type":"string","minLength":3,"example":"elon_musk"},"email":{"type":"string","format":"email","example":"elon@x.com"},"password":{"type":"string","minLength":5,"example":"Xyz_123"}},"required":["username","email","password"]}}}},"responses":{"200":{"description":"Successfully created new user"}}}},"/users/auth/login":{"post":{"description":"Login Boundless Books","tags":["User"],"requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"username":{"type":"string","minLength":3,"example":"elon_musk"},"password":{"type":"string","minLength":5,"example":"Xyz_123"}},"required":["username","password"]}}}},"responses":{"200":{"description":"Successfully login"}}}},"/users/auth/me":{"get":{"description":"Get my profile information","security":[{"Bearer":[]}],"tags":["User"],"responses":{"200":{"description":"Information details"},"400":{"description":"Information not found"}}}},"/products":{"get":{"description":"Get all products","tags":["Product"],"responses":{"200":{"description":"Successfully get all products"}}},"post":{"description":"Create new product","tags":["Product"],"requestBody":{"description":"NOTE: weight in grams, length and width in millimeters.","content":{"application/json":{"schema":{"type":"object","properties":{"title":{"type":"string","minLength":5,"example":"Atomic Habits"},"slug":{"type":"string","minLength":5,"example":"atomic-habits"},"authorSlug":{"type":"string","minLength":3,"example":"james-clear"},"publicationDate":{"type":"string","format":"date-time","example":"2024-05-27T03:57:00.438Z"},"numberOfPages":{"type":"integer","minimum":1,"example":352},"length":{"type":"integer","minimum":1,"example":230},"width":{"type":"integer","minimum":1,"example":150},"weight":{"type":"integer","example":500},"language":{"type":"string","minLength":3,"example":"Indonesian"},"description":{"type":"string","minLength":15,"example":"Atomic Habits: Perubahan Kecil yang Memberikan Hasil Luar Biasa adalah buku kategori self improvement karya James Clear."},"imageUrl":{"type":"string","format":"uri","example":"https://cdn.gramedia.com/uploads/items/Atomic_Habits_C-FRONT_HC_-_Mockup.png"},"isbn":{"type":"string","minLength":5,"example":"9786020667188"},"publisherSlug":{"type":"string","minLength":1,"example":"gramedia"},"price":{"type":"integer","minimum":1,"example":120000}},"required":["title","slug","description","price"]}}}},"responses":{"200":{"description":"Successfully created the product"}}},"delete":{"description":"Delete all products","tags":["Product"],"responses":{"200":{"description":"Successfully deleted all products data."}}}},"/products/{slug}":{"get":{"description":"Get detail product by id","tags":["Product"],"parameters":[{"schema":{"type":"string","minLength":1,"example":"atomic-habits"},"required":true,"name":"slug","in":"path"}],"responses":{"200":{"description":"Successfully get product details"},"400":{"description":"Product not found"}}},"delete":{"description":"Delete the product by slug","tags":["Product"],"parameters":[{"schema":{"type":"string","minLength":1,"example":"atomic-habits"},"required":true,"name":"slug","in":"path"}],"responses":{"200":{"description":"Successfully delete the product"},"400":{"description":"Product not found"}}},"put":{"description":"Update the product","tags":["Product"],"parameters":[{"schema":{"type":"string","minLength":1,"example":"atomic-habits"},"required":true,"name":"slug","in":"path"}],"requestBody":{"description":"NOTE: weight in grams, length and width in millimeters.","content":{"application/json":{"schema":{"type":"object","properties":{"title":{"type":"string","minLength":5,"example":"Atomic Habits"},"slug":{"type":"string","minLength":5,"example":"atomic-habits"},"authorSlug":{"type":"string","minLength":3,"example":"james-clear"},"publicationDate":{"type":"string","format":"date-time","example":"2024-05-27T03:57:00.438Z"},"numberOfPages":{"type":"integer","minimum":1,"example":352},"length":{"type":"integer","minimum":1,"example":230},"width":{"type":"integer","minimum":1,"example":150},"weight":{"type":"integer","example":500},"language":{"type":"string","minLength":3,"example":"Indonesian"},"description":{"type":"string","minLength":15,"example":"Atomic Habits: Perubahan Kecil yang Memberikan Hasil Luar Biasa adalah buku kategori self improvement karya James Clear."},"imageUrl":{"type":"string","format":"uri","example":"https://cdn.gramedia.com/uploads/items/Atomic_Habits_C-FRONT_HC_-_Mockup.png"},"isbn":{"type":"string","minLength":5,"example":"9786020667188"},"publisherSlug":{"type":"string","minLength":1,"example":"gramedia"},"price":{"type":"integer","minimum":1,"example":120000}}}}}},"responses":{"200":{"description":"Successfully updated the product"},"400":{"description":"Product not found"}}}},"/orders":{"post":{"description":"Create new order","security":[{"Bearer":[]}],"tags":["Order Item"],"requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"productId":{"type":"string","minLength":1,"example":"clxotdkb00005db67h7bczs3u"}},"required":["productId"]}}}},"responses":{"200":{"description":"Successfully created new order"}}},"get":{"description":"Get all order items","tags":["Order Item"],"responses":{"200":{"description":"List of order items"}}}},"/orders/{id}":{"delete":{"description":"Delete the order item by id","security":[{"Bearer":[]}],"tags":["Order Item"],"parameters":[{"schema":{"type":"string","minLength":1},"required":true,"name":"id","in":"path"}],"responses":{"200":{"description":"Successfully delete the order item"},"400":{"description":"Order item not found"}}},"put":{"security":[{"Bearer":[]}],"description":"Update the order item","tags":["Order Item"],"parameters":[{"schema":{"type":"string","minLength":1},"required":true,"name":"id","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"quantity":{"type":"number","minimum":1,"example":1}},"required":["quantity"]}}}},"responses":{"200":{"description":"Successfully updated the order item"},"400":{"description":"Order item not found"}}}},"/cart":{"get":{"description":"Get all carts","security":[{"Bearer":[]}],"tags":["Cart"],"responses":{"200":{"description":"List of carts"},"400":{"description":"Failed to get order carts"}}}},"/authors":{"get":{"description":"Get all authors","tags":["Authors"],"responses":{"200":{"description":"Successfully get all authors"}}},"post":{"description":"Create new author","tags":["Authors"],"requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","minLength":3,"example":"James Clear"},"slug":{"type":"string","minLength":3,"example":"james-clear"},"about":{"type":"string","minLength":10,"example":"James Clear adalah seorang penulis dan pembicara. Dia adalah penulis buku terlaris #1 New York Times, Atomic Habits, dan buletin 3-2-1 yang populer."},"imageUrl":{"type":"string","format":"uri","example":"https://cdn.gramedia.com/uploads/authors/James_Clear_Author1__w200_hauto.jpg"}},"required":["name","slug"]}}}},"responses":{"200":{"description":"Successfully created the author"}}},"delete":{"description":"Delete all authors","tags":["Authors"],"responses":{"200":{"description":"Successfully deleted all authors data."}}}},"/authors/{slug}":{"get":{"description":"Get detail author by id","tags":["Authors"],"parameters":[{"schema":{"type":"string","minLength":1,"example":"james-clear"},"required":true,"name":"slug","in":"path"}],"responses":{"200":{"description":"Successfully get author details"},"400":{"description":"Author not found"}}},"delete":{"description":"Delete the author by slug","tags":["Authors"],"parameters":[{"schema":{"type":"string","minLength":1,"example":"james-clear"},"required":true,"name":"slug","in":"path"}],"responses":{"200":{"description":"Successfully delete the author"},"400":{"description":"Author not found"}}},"put":{"description":"Update the author","tags":["Authors"],"parameters":[{"schema":{"type":"string","minLength":1,"example":"james-clear"},"required":true,"name":"slug","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","minLength":3,"example":"James Clear"},"slug":{"type":"string","minLength":3,"example":"james-clear"},"about":{"type":"string","minLength":10,"example":"James Clear adalah seorang penulis dan pembicara. Dia adalah penulis buku terlaris #1 New York Times, Atomic Habits, dan buletin 3-2-1 yang populer."},"imageUrl":{"type":"string","format":"uri","example":"https://cdn.gramedia.com/uploads/authors/James_Clear_Author1__w200_hauto.jpg"}}}}}},"responses":{"200":{"description":"Successfully updated the author"},"400":{"description":"Author not found"}}}},"/publishers":{"get":{"description":"Get all publishers","tags":["Publisher"],"responses":{"200":{"description":"List of publishers"}}},"post":{"description":"Create new publisher","tags":["Publisher"],"requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","minLength":3,"example":"Gramedia"},"address":{"type":"string","minLength":10,"example":"Jl HOS Cokroaminoto N0 45"},"slug":{"type":"string","minLength":3,"example":"gramedia"}},"required":["name","address","slug"]}}}},"responses":{"200":{"description":"Successfully created the publisher"}}},"delete":{"description":"Delete all publishers","tags":["Publisher"],"responses":{"200":{"description":"Successfully deleted all publishers data."}}}},"/publishers/{slug}":{"get":{"description":"Get detail publisher by slug","tags":["Publisher"],"parameters":[{"schema":{"type":"string","minLength":1,"example":"gramedia"},"required":true,"name":"slug","in":"path"}],"responses":{"200":{"description":"Publiser details"},"400":{"description":"Publisher not found"}}},"delete":{"description":"Delete the publisher by id","tags":["Publisher"],"parameters":[{"schema":{"type":"string","minLength":1,"example":"gramedia"},"required":true,"name":"slug","in":"path"}],"responses":{"200":{"description":"Successfully delete the publisher"},"400":{"description":"Publisher not found"}}},"put":{"description":"Update the publisher","tags":["Publisher"],"parameters":[{"schema":{"type":"string","minLength":1,"example":"gramedia"},"required":true,"name":"slug","in":"path"}],"requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string","minLength":3,"example":"Gramedia"},"address":{"type":"string","minLength":10,"example":"Jl HOS Cokroaminoto N0 45"},"slug":{"type":"string","minLength":3,"example":"gramedia"}}}}}},"responses":{"200":{"description":"Successfully updated the publisher"},"400":{"description":"Publisher not found"}}}}},"webhooks":{}}