Discover Packages
github.com/Southclaws/schemancer
tests
multi
expected
golang
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: 1
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 Person struct {
Address *Address `json:"address,omitempty"`
Age *int `json:"age,omitempty"`
ID uuid .UUID `json:"id"`
Name string `json:"name"`
Status Status `json:"status"`
}
const (
StatusActive Status = "active"
StatusInactive Status = "inactive"
StatusPending Status = "pending"
)
Source Files
¶
Click to show internal directories.
Click to hide internal directories.