1
| {"openapi":"3.0.2","info":{"title":"MentorQuotes","description":"Working towards helping people move forward","contact":{"name":"james","url":"http://mentorquotes.htb","email":"james@mentorquotes.htb"},"version":"0.0.1"},"paths":{"/auth/login":{"post":{"tags":["Auth"],"summary":"Login","operationId":"login_auth_login_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/userSchema"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/auth/signup":{"post":{"tags":["Auth"],"summary":"Create User","operationId":"create_user_auth_signup_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/userSchema"}}},"required":true},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/userDB"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/users/":{"get":{"tags":["Users"],"summary":"Get Users","operationId":"get_users_users__get","parameters":[{"required":true,"schema":{"title":"Authorization","type":"string"},"name":"Authorization","in":"header"}],"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"title":"Response Get Users Users Get","type":"array","items":{"$ref":"#/components/schemas/userDB"}}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/users/{id}/":{"get":{"tags":["Users"],"summary":"Get User By Id","operationId":"get_user_by_id_users__id___get","parameters":[{"required":true,"schema":{"title":"Id","exclusiveMinimum":0.0,"type":"integer"},"name":"id","in":"path"},{"required":true,"schema":{"title":"Authorization","type":"string"},"name":"Authorization","in":"header"}],"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/userDB"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/users/add":{"post":{"tags":["Users"],"summary":"Create User","operationId":"create_user_users_add_post","parameters":[{"required":true,"schema":{"title":"Authorization","type":"string"},"name":"Authorization","in":"header"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/userSchema"}}},"required":true},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/userDB"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/quotes/":{"get":{"tags":["Quotes"],"summary":"Read All Quotes","operationId":"read_all_quotes_quotes__get","parameters":[{"required":true,"schema":{"title":"Authorization","type":"string"},"name":"Authorization","in":"header"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"title":"Response Read All Quotes Quotes Get","type":"array","items":{"$ref":"#/components/schemas/quoteDB"}}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Quotes"],"summary":"Create Quote","operationId":"create_quote_quotes__post","parameters":[{"required":true,"schema":{"title":"Authorization","type":"string"},"name":"Authorization","in":"header"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/quoteSchema"}}},"required":true},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/quoteDB"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/quotes/{id}/":{"get":{"tags":["Quotes"],"summary":"Read Quote","operationId":"read_quote_quotes__id___get","parameters":[{"required":true,"schema":{"title":"Id","exclusiveMinimum":0.0,"type":"integer"},"name":"id","in":"path"},{"required":true,"schema":{"title":"Authorization","type":"string"},"name":"Authorization","in":"header"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/quoteDB"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Quotes"],"summary":"Update Quote","operationId":"update_quote_quotes__id___put","parameters":[{"required":true,"schema":{"title":"Id","exclusiveMinimum":0.0,"type":"integer"},"name":"id","in":"path"},{"required":true,"schema":{"title":"Authorization","type":"string"},"name":"Authorization","in":"header"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/quoteSchema"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/quoteDB"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Quotes"],"summary":"Delete Quote","operationId":"delete_quote_quotes__id___delete","parameters":[{"required":true,"schema":{"title":"Id","exclusiveMinimum":0.0,"type":"integer"},"name":"id","in":"path"},{"required":true,"schema":{"title":"Authorization","type":"string"},"name":"Authorization","in":"header"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/quoteDB"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}},"components":{"schemas":{"HTTPValidationError":{"title":"HTTPValidationError","type":"object","properties":{"detail":{"title":"Detail","type":"array","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ValidationError":{"title":"ValidationError","required":["loc","msg","type"],"type":"object","properties":{"loc":{"title":"Location","type":"array","items":{"type":"string"}},"msg":{"title":"Message","type":"string"},"type":{"title":"Error Type","type":"string"}}},"quoteDB":{"title":"quoteDB","required":["title","description","id"],"type":"object","properties":{"title":{"title":"Title","maxLength":50,"minLength":3,"type":"string"},"description":{"title":"Description","maxLength":1500,"minLength":3,"type":"string"},"id":{"title":"Id","type":"integer"}}},"quoteSchema":{"title":"quoteSchema","required":["title","description"],"type":"object","properties":{"title":{"title":"Title","maxLength":50,"minLength":3,"type":"string"},"description":{"title":"Description","maxLength":1500,"minLength":3,"type":"string"}}},"userDB":{"title":"userDB","required":["id","email","username"],"type":"object","properties":{"id":{"title":"Id","type":"integer"},"email":{"title":"Email","type":"string"},"username":{"title":"Username","type":"string"}}},"userSchema":{"title":"userSchema","required":["email","username","password"],"type":"object","properties":{"email":{"title":"Email","type":"string","format":"email"},"username":{"title":"Username","maxLength":50,"minLength":5,"type":"string"},"password":{"title":"Password","maxLength":50,"minLength":8,"type":"string"}}}}}}
|