odin-jsonschema

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

sample.json (249B)


      1 {
      2   "openapi": "3.2.0",
      3   "info": { "title": "Pet Store", "version": "1.0.0" },
      4   "paths": {
      5     "/pets": {
      6       "get": {
      7         "summary": "List pets",
      8         "responses": {
      9           "200": { "description": "ok" }
     10         }
     11       }
     12     }
     13   }
     14 }