import"time"#Schema:{// Basic schemafirstName:stringlastName:stringage:intbirthday:string// Refine as needed#Title:=~"^[A-Z]"|error("must start with an uppercase letter")firstName:#TitlelastName:#Titleage:>0birthday:time.Format("01/02/2006")// Defaultsgopher:bool|*true}// Apply the schema to root#Schema