expected.odin (275B)
1 // Code generated by jschema. DO NOT EDIT. 2 package schema 3 4 Root :: struct { 5 points: []Root_Points_Item `json:"points"`, 6 matrix_: Maybe([][]f64) `json:"matrix"`, 7 tags: Maybe([]string) `json:"tags"`, 8 } 9 10 Root_Points_Item :: struct { 11 x: f64 `json:"x"`, 12 y: f64 `json:"y"`, 13 }