odin-jsonschema

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

schema.json (218B)


      1 {
      2   "type": "object",
      3   "properties": {
      4     "name": { "type": ["string", "null"] },
      5     "age": { "type": ["integer", "null"] },
      6     "tag": { "type": ["string", "integer", "null"] }
      7   },
      8   "required": ["name", "tag"]
      9 }