Discover Packages
github.com/Southclaws/schemancer
tests
golang
refs
package
Version:
v1.2.0
Opens a new window with list of versions in this module.
Published: Jul 15, 2026
License: MIT
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
Documentation
¶
type Address struct {
City string `json:"city"`
Country *string `json:"country,omitempty"`
Street string `json:"street"`
}
type Company struct {
Ceo *Person `json:"ceo,omitempty"`
Employees []Person `json:"employees,omitempty"`
Headquarters *Address `json:"headquarters,omitempty"`
Name string `json:"name"`
}
type Person struct {
Friends []Person `json:"friends,omitempty"`
HomeAddress *Address `json:"homeAddress,omitempty"`
Name string `json:"name"`
WorkAddress *Address `json:"workAddress,omitempty"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.