import "goa.design/goa/v3/eval" var UserAttributeDefinition = &eval.AttributeDefinition{ Type: eval.Object{ "name": eval.String{}, "email": eval.String{}, "password": eval.String{}, "account_status": eval.String{}, }, Metadata: map[string][]string{ "struct:field:name": {"user"}, "swagger:tag": {"User"}, }, }In this example, we create a new AttributeDefinition for the user model and specify the attributes as a map of keys and values. We can also add metadata using the Metadata field for tooling integration purposes. Overall, the goa.design AttributeDefinition package provides simple and efficient means to define attributes for your Go applications.