{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Complete JSON Schema",
  "description": "Testing for skipped props",
  "type": "object",
  "properties": {
      "foo": {
          "type": "string"
      },
      "bar": {
          "description": "Configures the bar property",
          "type": "boolean",
          "default": "true"
      },
      "foobar": {
          "description": "Overwrite the bar value",
          "examples":[{
            "bar": "true",
            "foobar": "no"
          }],
          "type": "string",
          "format": "yes/no"
      }
    },
    "additionalProperties": false,
    "required": [
        "bar"
    ]
}
