diff --git a/connector/bitbucketcloud/bitbucketcloud.go b/connector/bitbucketcloud/bitbucketcloud.go
index 0b3b1ba43e3d8f3bcfdef7ad553ac43b6b352a46..27a63c4684169d54550f55168fac040f589b5b1e 100644
--- a/connector/bitbucketcloud/bitbucketcloud.go
+++ b/connector/bitbucketcloud/bitbucketcloud.go
@@ -275,10 +275,9 @@ type pagedResponse struct {
 // user holds Bitbucket user information (relevant to dex) as defined by
 // https://developer.atlassian.com/bitbucket/api/2/reference/resource/user
 type user struct {
-	Username    string `json:"username"`
-	DisplayName string `json:"display_name"`
-	UUID        string `json:"uuid"`
-	Email       string `json:"email"`
+	Username string `json:"username"`
+	UUID     string `json:"uuid"`
+	Email    string `json:"email"`
 }
 
 // user queries the Bitbucket API for profile information using the provided client.