package domain type User struct { ID string `json:"id" jsonapi:"primary,users"` } func NewUser() *User { return &User{} }