odin-jsonschema

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

schema.json (207B)


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