odin-jsonschema

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

schema.json (231B)


      1 {
      2   "type": "object",
      3   "properties": {
      4     "value": {
      5       "anyOf": [{ "type": "string" }, { "type": "number" }]
      6     },
      7     "note": {
      8       "anyOf": [{ "type": "string" }, { "type": "null" }]
      9     }
     10   },
     11   "required": ["value"]
     12 }