fixes for failing unit tests after changes
diff --git a/authv3.go b/authv3.go
index 470e495..3099b95 100644
--- a/authv3.go
+++ b/authv3.go
@@ -38,7 +38,7 @@
 	ID       string    `json:"id,omitempty" xor:"Name"`
 	Name     string    `json:"name,omitempty" xor:"ID"`
 	Password string    `json:"password" required:"true"`
-	Domain   *DomainV3 `json:"domain,omitempty" not:"Domain.ID,Domain.Name"`
+	Domain   *DomainV3 `json:"domain,omitempty"`
 }
 
 type PasswordCredentialsV3 struct {