package domain // Organization represents the core business object for an organization. // It contains identifying information such as name, address, and phone number. type Organization struct { Name string `json:"name"` Address string `json:"address"` Phone string `json:"phone"` }