odin-jsonschema

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

expected.odin (185B)


      1 // Code generated by jschema. DO NOT EDIT.
      2 package schema
      3 
      4 Root :: struct {
      5 	name: Maybe(string) `json:"name"`,
      6 	age: Maybe(i64) `json:"age"`,
      7 	tag: union {string, i64} `json:"tag"`,
      8 }