github.com/kaisawind/go-swagger@v0.19.0/fixtures/bugs/1260/test3-ter-model-schema.json (about)

     1  {
     2    "$schema": "http://json-schema.org/draft-04/schema#",
     3    "title": "test3-model-schema",
     4    "description": "Test schema responses",
     5    "definitions": {
     6      "b1": {
     7        "type": "array",
     8        "items": {
     9          "type": "string"
    10        }
    11      },
    12      "b2": {
    13        "type": "object",
    14        "properties": {
    15            "x2": {
    16              "type": "string"
    17            }
    18        }
    19      },
    20      "b3": {
    21        "type": "object",
    22        "additionalProperties": {
    23          "type": "string"
    24        }
    25      }
    26    }
    27  }