odin-jsonschema

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

expected.odin (217B)


      1 // Code generated by jschema. DO NOT EDIT.
      2 package schema
      3 
      4 Root :: struct {
      5 	scores: map[string]f64 `json:"scores"`,
      6 	meta: Maybe(map[string]Entry) `json:"meta"`,
      7 }
      8 
      9 Entry :: struct {
     10 	value: string `json:"value"`,
     11 }