﻿{
  "type": "object",
  "title": "title1",
  "required": [
    "property1"
  ],
  "properties": {
    "property1": {
      "required": [
        "property3"
      ],
      "properties": {
        "property2": {
          "type": "integer"
        },
        "property3": {
          "type": "string",
          "maxLength": 15
        }
      }
    },
    "property4": {
      "properties": {
        "property5": {
          "properties": {
            "property6": {
              "type": "boolean"
            }
          }
        },
        "property7": {
          "type": "string",
          "minLength": 2
        }
      },
      "readOnly": true
    }
  },
  "externalDocs": {
    "url": "http://example.com/externalDocs"
  },
  "x-nullable": true
}