odin-jsonschema

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

expected.odin (266B)


      1 // Code generated by jschema. DO NOT EDIT.
      2 package schema
      3 
      4 import "core:encoding/json"
      5 
      6 Root :: struct {
      7 	count: i64 `json:"count"`,
      8 	ratio: f64 `json:"ratio"`,
      9 	active: bool `json:"active"`,
     10 	label: string `json:"label"`,
     11 	anything: json.Value `json:"anything"`,
     12 }