odin-jsonschema

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

expected.odin (198B)


      1 // Code generated by jschema. DO NOT EDIT.
      2 package schema
      3 
      4 Root :: struct {
      5 	status: Root_Status `json:"status"`,
      6 	kind: string `json:"kind"`,
      7 }
      8 
      9 Root_Status :: enum {
     10 	pending,
     11 	active,
     12 	closed,
     13 }