odin-jsonschema

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

expected.odin (242B)


      1 // Code generated by jschema. DO NOT EDIT.
      2 package schema
      3 
      4 Root :: struct {
      5 	name: string `json:"name"`,
      6 	address: Maybe(Address) `json:"address"`,
      7 }
      8 
      9 Address :: struct {
     10 	street: Maybe(string) `json:"street"`,
     11 	city: string `json:"city"`,
     12 }