odin-jsonschema

Implementation of JSON schema for Odin
Log | Files | Refs | LICENSE

expected.odin (195B)


      1 // Code generated by jschema. DO NOT EDIT.
      2 package schema
      3 
      4 Root :: struct {
      5 	start: Point `json:"start"`,
      6 	end: Point `json:"end"`,
      7 }
      8 
      9 Point :: struct {
     10 	x: f64 `json:"x"`,
     11 	y: f64 `json:"y"`,
     12 }