expected.odin (287B)
1 // Code generated by jschema. DO NOT EDIT. 2 package schema 3 4 Root :: struct { 5 one: Maybe(string) `json:"one"`, 6 two: Maybe(f64) `json:"two"`, 7 three: Maybe([]string) `json:"three"`, 8 four: Maybe(Root_Four) `json:"four"`, 9 } 10 11 Root_Four :: struct { 12 foobar: Maybe(string) `json:"foobar"`, 13 }