application_not_found = { 400: { "description": "Not Found", "content": { "application/json": {"example": {"status": 400, "message": "Application not found.", "success": False}} }, } } user_not_found = { 404: { "description": "Not Found", "content": {"application/json": {"example": {"status": 404, "message": "User not found.", "success": False}}}, } } unauthorized_response = { 401: { "description": "Unauthorized", "content": { "application/json": {"example": {"status": 401, "message": "Requires authentication", "success": False}} }, } } internal_server_error_response = { 500: { "description": "Internal Server Error", "content": { "application/json": { "example": {"status": 500, "message": "An internal server error occurred.", "success": False} } }, } } onboarding_data_not_found = { 409: { "description": "Conflict", "content": { "application/json": {"example": {"status": 409, "message": "Onboarding data not found", "success": False}} }, } }