odin-jsonschema

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

expected.odin (270B)


      1 // Code generated by jschema. DO NOT EDIT.
      2 package schema
      3 
      4 Root :: struct {
      5 	owner: Person `json:"owner"`,
      6 	pet: Maybe(Pet) `json:"pet"`,
      7 }
      8 
      9 Person :: struct {
     10 	name: string `json:"name"`,
     11 	pet: Maybe(Pet) `json:"pet"`,
     12 }
     13 
     14 Pet :: struct {
     15 	name: string `json:"name"`,
     16 }