odin-jsonschema

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

schema.json (241B)


      1 {
      2   "$schema": "https://json-schema.org/draft/2020-12/schema",
      3   "type": "object",
      4   "properties": {
      5     "id": { "type": "integer" },
      6     "name": { "type": "string" },
      7     "nickname": { "type": "string" }
      8   },
      9   "required": ["id", "name"]
     10 }