odin-jsonschema

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

schema.json (344B)


      1 {
      2   "type": "object",
      3   "properties": {
      4     "one": {
      5       "type": "string"
      6     },
      7     "two": {
      8       "type": "number"
      9     },
     10     "three": {
     11       "type": "array",
     12       "items": { "type": "string" }
     13     },
     14     "four": {
     15       "type": "object",
     16       "properties": {
     17         "foobar": {
     18           "type": "string"
     19         }
     20       }
     21     }
     22   }
     23 }