odin-jsonschema

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

address.json (200B)


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