odin-jsonschema

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

sample.json (197B)


      1 {
      2   "tree": {
      3     "value": "root",
      4     "children": [
      5       { "value": "leaf-a" },
      6       { "value": "branch", "children": [{ "value": "leaf-b" }] }
      7     ]
      8   },
      9   "loop": { "next": { "next": {} } }
     10 }