package model type Describable struct { Name string `bson:"name" json:"name"` // Name Description *string `bson:"description,omitempty" json:"description,omitempty"` // Optional description } const ( NameField = "name" DescriptionField = "description" )