2025-SSF/api.json
janghanul090801 76a02076c9 2025 SSF Public
2025-09-12 14:47:48 +09:00

1 line
No EOL
24 KiB
JSON

{"openapi":"3.1.0","info":{"title":"FastAPI","version":"0.1.0"},"paths":{"/register":{"post":{"tags":["user"],"summary":"Register User","operationId":"register_user_register_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserCreate"}}},"required":true},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/login":{"post":{"tags":["user"],"summary":"Login User","operationId":"login_user_login_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserLogin"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/profile/{username}":{"get":{"tags":["user"],"summary":"Get User Profile","operationId":"get_user_profile_profile__username__get","parameters":[{"name":"username","in":"path","required":true,"schema":{"type":"string","title":"Username"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/friendship/request":{"post":{"tags":["friendship","friendship"],"summary":"Send Friendship Request","operationId":"send_friendship_request_friendship_request_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FriendshipRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FriendshipResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"HTTPBearer":[]}]}},"/friendship/{friendship_id}/accept":{"put":{"tags":["friendship","friendship"],"summary":"Accept Friendship Request","operationId":"accept_friendship_request_friendship__friendship_id__accept_put","security":[{"HTTPBearer":[]}],"parameters":[{"name":"friendship_id","in":"path","required":true,"schema":{"type":"integer","title":"Friendship Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FriendshipResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/friendship":{"get":{"tags":["friendship","friendship"],"summary":"Get Friendships","operationId":"get_friendships_friendship_get","security":[{"HTTPBearer":[]}],"parameters":[{"name":"status","in":"query","required":false,"schema":{"type":"string","title":"Status"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/FriendshipResponse"},"title":"Response Get Friendships Friendship Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/friendship/{friendship_id}":{"delete":{"tags":["friendship","friendship"],"summary":"Delete Friendship","operationId":"delete_friendship_friendship__friendship_id__delete","security":[{"HTTPBearer":[]}],"parameters":[{"name":"friendship_id","in":"path","required":true,"schema":{"type":"integer","title":"Friendship Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Response Delete Friendship Friendship Friendship Id Delete"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/friendship/pending":{"get":{"tags":["friendship","friendship"],"summary":"Get Pending Requests","operationId":"get_pending_requests_friendship_pending_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/FriendshipResponse"},"type":"array","title":"Response Get Pending Requests Friendship Pending Get"}}}}},"security":[{"HTTPBearer":[]}]}},"/diary":{"post":{"tags":["diary","diary"],"summary":"Create Diary","operationId":"create_diary_diary_post","security":[{"HTTPBearer":[]}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DiaryCreate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DiaryResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"get":{"tags":["diary","diary"],"summary":"Get User Diaries","operationId":"get_user_diaries_diary_get","security":[{"HTTPBearer":[]}],"parameters":[{"name":"skip","in":"query","required":false,"schema":{"type":"integer","default":0,"title":"Skip"}},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","default":20,"title":"Limit"}},{"name":"category","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Category"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/DiaryResponse"},"title":"Response Get User Diaries Diary Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/diary/{diary_id}":{"get":{"tags":["diary","diary"],"summary":"Get Diary","operationId":"get_diary_diary__diary_id__get","security":[{"HTTPBearer":[]}],"parameters":[{"name":"diary_id","in":"path","required":true,"schema":{"type":"integer","title":"Diary Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DiaryResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["diary","diary"],"summary":"Update Diary","operationId":"update_diary_diary__diary_id__put","security":[{"HTTPBearer":[]}],"parameters":[{"name":"diary_id","in":"path","required":true,"schema":{"type":"integer","title":"Diary Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DiaryUpdate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DiaryResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["diary","diary"],"summary":"Delete Diary","operationId":"delete_diary_diary__diary_id__delete","security":[{"HTTPBearer":[]}],"parameters":[{"name":"diary_id","in":"path","required":true,"schema":{"type":"integer","title":"Diary Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Response Delete Diary Diary Diary Id Delete"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/diary/upload-image":{"post":{"tags":["diary","diary"],"summary":"Upload Diary Image","operationId":"upload_diary_image_diary_upload_image_post","requestBody":{"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/Body_upload_diary_image_diary_upload_image_post"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"additionalProperties":true,"type":"object","title":"Response Upload Diary Image Diary Upload Image Post"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"HTTPBearer":[]}]}},"/diary/{diary_id}/submit-for-event":{"post":{"tags":["diary","diary"],"summary":"Submit Diary For Event","operationId":"submit_diary_for_event_diary__diary_id__submit_for_event_post","security":[{"HTTPBearer":[]}],"parameters":[{"name":"diary_id","in":"path","required":true,"schema":{"type":"integer","title":"Diary Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Response Submit Diary For Event Diary Diary Id Submit For Event Post"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/avatar":{"get":{"tags":["avatar","avatar"],"summary":"Get Current Avatar","operationId":"get_current_avatar_avatar_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AvatarResponse"}}}}},"security":[{"HTTPBearer":[]}]},"put":{"tags":["avatar","avatar"],"summary":"Update Avatar","operationId":"update_avatar_avatar_put","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AvatarUpdate"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AvatarResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"HTTPBearer":[]}]}},"/avatar/options":{"get":{"tags":["avatar","avatar"],"summary":"Get Avatar Options","operationId":"get_avatar_options_avatar_options_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AvatarOptions"}}}}}}},"/letter":{"post":{"tags":["letter","letter"],"summary":"Create Letter","operationId":"create_letter_letter_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LetterCreate"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/LetterResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"HTTPBearer":[]}]}},"/letter/my":{"get":{"tags":["letter","letter"],"summary":"Get My Letters","operationId":"get_my_letters_letter_my_get","security":[{"HTTPBearer":[]}],"parameters":[{"name":"skip","in":"query","required":false,"schema":{"type":"integer","default":0,"title":"Skip"}},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","default":20,"title":"Limit"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/LetterResponse"},"title":"Response Get My Letters Letter My Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/letter/{letter_id}":{"get":{"tags":["letter","letter"],"summary":"Get Letter","operationId":"get_letter_letter__letter_id__get","security":[{"HTTPBearer":[]}],"parameters":[{"name":"letter_id","in":"path","required":true,"schema":{"type":"integer","title":"Letter Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/LetterResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/photo/upload":{"post":{"tags":["photo","photo"],"summary":"Upload Photo","operationId":"upload_photo_photo_upload_post","requestBody":{"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/Body_upload_photo_photo_upload_post"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PhotoResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"HTTPBearer":[]}]}},"/photo":{"get":{"tags":["photo","photo"],"summary":"Get User Photos","operationId":"get_user_photos_photo_get","security":[{"HTTPBearer":[]}],"parameters":[{"name":"skip","in":"query","required":false,"schema":{"type":"integer","default":0,"title":"Skip"}},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","default":20,"title":"Limit"}},{"name":"album_name","in":"query","required":false,"schema":{"type":"string","title":"Album Name"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/PhotoResponse"},"title":"Response Get User Photos Photo Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/photo/{photo_id}/comment":{"post":{"tags":["photo","photo"],"summary":"Add Photo Comment","operationId":"add_photo_comment_photo__photo_id__comment_post","security":[{"HTTPBearer":[]}],"parameters":[{"name":"photo_id","in":"path","required":true,"schema":{"type":"integer","title":"Photo Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CommentCreate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CommentResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/photo/{photo_id}/comments":{"get":{"tags":["photo","photo"],"summary":"Get Photo Comments","operationId":"get_photo_comments_photo__photo_id__comments_get","security":[{"HTTPBearer":[]}],"parameters":[{"name":"photo_id","in":"path","required":true,"schema":{"type":"integer","title":"Photo Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/CommentResponse"},"title":"Response Get Photo Comments Photo Photo Id Comments Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/photo/edit-filter":{"post":{"tags":["photo","photo"],"summary":"Apply Photo Filter","operationId":"apply_photo_filter_photo_edit_filter_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FilterRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"additionalProperties":true,"type":"object","title":"Response Apply Photo Filter Photo Edit Filter Post"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"HTTPBearer":[]}]}},"/photo/{photo_id}":{"delete":{"tags":["photo","photo"],"summary":"Delete Photo","operationId":"delete_photo_photo__photo_id__delete","security":[{"HTTPBearer":[]}],"parameters":[{"name":"photo_id","in":"path","required":true,"schema":{"type":"integer","title":"Photo Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Response Delete Photo Photo Photo Id Delete"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/test":{"get":{"tags":["guestBook"],"summary":"Get Guest Book","operationId":"get_guest_book_test_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}}},"components":{"schemas":{"AvatarOptions":{"properties":{"face_types":{"items":{"type":"string"},"type":"array","title":"Face Types"},"hair_types":{"items":{"type":"string"},"type":"array","title":"Hair Types"},"clothes_types":{"items":{"type":"string"},"type":"array","title":"Clothes Types"},"background_types":{"items":{"type":"string"},"type":"array","title":"Background Types"}},"type":"object","required":["face_types","hair_types","clothes_types","background_types"],"title":"AvatarOptions"},"AvatarResponse":{"properties":{"id":{"type":"integer","title":"Id"},"user_id":{"type":"integer","title":"User Id"},"face_type":{"$ref":"#/components/schemas/FaceType"},"hair_type":{"$ref":"#/components/schemas/HairType"},"clothes_type":{"$ref":"#/components/schemas/ClothesType"},"background_type":{"$ref":"#/components/schemas/BackgroundType"},"position_x":{"type":"integer","title":"Position X"},"position_y":{"type":"integer","title":"Position Y"}},"type":"object","required":["id","user_id","face_type","hair_type","clothes_type","background_type","position_x","position_y"],"title":"AvatarResponse"},"AvatarUpdate":{"properties":{"face_type":{"anyOf":[{"$ref":"#/components/schemas/FaceType"},{"type":"null"}]},"hair_type":{"anyOf":[{"$ref":"#/components/schemas/HairType"},{"type":"null"}]},"clothes_type":{"anyOf":[{"$ref":"#/components/schemas/ClothesType"},{"type":"null"}]},"background_type":{"anyOf":[{"$ref":"#/components/schemas/BackgroundType"},{"type":"null"}]},"position_x":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Position X"},"position_y":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Position Y"}},"type":"object","title":"AvatarUpdate"},"BackgroundType":{"type":"string","enum":["room","garden","beach","city","space"],"title":"BackgroundType"},"Body_upload_diary_image_diary_upload_image_post":{"properties":{"file":{"type":"string","format":"binary","title":"File"}},"type":"object","required":["file"],"title":"Body_upload_diary_image_diary_upload_image_post"},"Body_upload_photo_photo_upload_post":{"properties":{"photo_data":{"$ref":"#/components/schemas/PhotoUpload"},"file":{"type":"string","format":"binary","title":"File"}},"type":"object","required":["photo_data","file"],"title":"Body_upload_photo_photo_upload_post"},"ClothesType":{"type":"string","enum":["casual","formal","sporty","vintage","cute"],"title":"ClothesType"},"CommentCreate":{"properties":{"content":{"type":"string","title":"Content"}},"type":"object","required":["content"],"title":"CommentCreate"},"CommentResponse":{"properties":{"id":{"type":"integer","title":"Id"},"photo_id":{"type":"integer","title":"Photo Id"},"user_id":{"type":"integer","title":"User Id"},"username":{"type":"string","title":"Username"},"content":{"type":"string","title":"Content"},"created_at":{"type":"string","format":"date-time","title":"Created At"}},"type":"object","required":["id","photo_id","user_id","username","content","created_at"],"title":"CommentResponse"},"DiaryCategory":{"type":"string","enum":["daily","travel","food","love","work","hobby"],"title":"DiaryCategory"},"DiaryCreate":{"properties":{"title":{"type":"string","title":"Title"},"content":{"type":"string","title":"Content"},"category":{"$ref":"#/components/schemas/DiaryCategory"},"images":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Images","default":[]}},"type":"object","required":["title","content","category"],"title":"DiaryCreate"},"DiaryResponse":{"properties":{"id":{"type":"integer","title":"Id"},"user_id":{"type":"integer","title":"User Id"},"title":{"type":"string","title":"Title"},"content":{"type":"string","title":"Content"},"images":{"items":{"type":"string"},"type":"array","title":"Images"},"category":{"$ref":"#/components/schemas/DiaryCategory"},"created_at":{"type":"string","format":"date-time","title":"Created At"},"is_submitted":{"type":"boolean","title":"Is Submitted"},"email_sent":{"type":"boolean","title":"Email Sent"}},"type":"object","required":["id","user_id","title","content","images","category","created_at","is_submitted","email_sent"],"title":"DiaryResponse"},"DiaryUpdate":{"properties":{"title":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Title"},"content":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Content"},"category":{"anyOf":[{"$ref":"#/components/schemas/DiaryCategory"},{"type":"null"}]},"images":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Images"}},"type":"object","title":"DiaryUpdate"},"FaceType":{"type":"string","enum":["round","oval","square","heart"],"title":"FaceType"},"FilterRequest":{"properties":{"photo_id":{"type":"integer","title":"Photo Id"},"filter_type":{"type":"string","title":"Filter Type"}},"type":"object","required":["photo_id","filter_type"],"title":"FilterRequest"},"FriendshipRequest":{"properties":{"friend_username":{"type":"string","title":"Friend Username"}},"type":"object","required":["friend_username"],"title":"FriendshipRequest"},"FriendshipResponse":{"properties":{"id":{"type":"integer","title":"Id"},"user_id":{"type":"integer","title":"User Id"},"friend_id":{"type":"integer","title":"Friend Id"},"friend_username":{"type":"string","title":"Friend Username"},"status":{"$ref":"#/components/schemas/FriendshipStatus"},"created_at":{"type":"string","format":"date-time","title":"Created At"}},"type":"object","required":["id","user_id","friend_id","friend_username","status","created_at"],"title":"FriendshipResponse"},"FriendshipStatus":{"type":"string","enum":["pending","accepted","rejected"],"title":"FriendshipStatus"},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"HairType":{"type":"string","enum":["short","long","curly","ponytail","bob"],"title":"HairType"},"LetterCreate":{"properties":{"recipient_email":{"type":"string","title":"Recipient Email"},"content":{"type":"string","title":"Content"}},"type":"object","required":["recipient_email","content"],"title":"LetterCreate"},"LetterResponse":{"properties":{"id":{"type":"integer","title":"Id"},"sender_id":{"type":"integer","title":"Sender Id"},"recipient_email":{"type":"string","title":"Recipient Email"},"content":{"type":"string","title":"Content"},"sent_date":{"type":"string","format":"date-time","title":"Sent Date"},"is_sent":{"type":"boolean","title":"Is Sent"}},"type":"object","required":["id","sender_id","recipient_email","content","sent_date","is_sent"],"title":"LetterResponse"},"PhotoResponse":{"properties":{"id":{"type":"integer","title":"Id"},"user_id":{"type":"integer","title":"User Id"},"album_name":{"type":"string","title":"Album Name"},"image_path":{"type":"string","title":"Image Path"},"title":{"type":"string","title":"Title"},"created_at":{"type":"string","format":"date-time","title":"Created At"}},"type":"object","required":["id","user_id","album_name","image_path","title","created_at"],"title":"PhotoResponse"},"PhotoUpload":{"properties":{"album_name":{"type":"string","title":"Album Name"},"title":{"type":"string","title":"Title"}},"type":"object","required":["album_name","title"],"title":"PhotoUpload"},"UserCreate":{"properties":{"username":{"type":"string","title":"Username"},"email":{"type":"string","title":"Email"},"password":{"type":"string","title":"Password"}},"type":"object","required":["username","email","password"],"title":"UserCreate"},"UserLogin":{"properties":{"username":{"type":"string","title":"Username"},"password":{"type":"string","title":"Password"}},"type":"object","required":["username","password"],"title":"UserLogin"},"UserResponse":{"properties":{"id":{"type":"integer","title":"Id"},"username":{"type":"string","title":"Username"},"email":{"type":"string","title":"Email"},"created_at":{"type":"string","format":"date-time","title":"Created At"},"is_active":{"type":"boolean","title":"Is Active"}},"type":"object","required":["id","username","email","created_at","is_active"],"title":"UserResponse"},"ValidationError":{"properties":{"loc":{"items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"type":"array","title":"Location"},"msg":{"type":"string","title":"Message"},"type":{"type":"string","title":"Error Type"}},"type":"object","required":["loc","msg","type"],"title":"ValidationError"}},"securitySchemes":{"HTTPBearer":{"type":"http","scheme":"bearer"}}}}