{
  "format": "json",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "http://example.com/root.json",
  "type": "object",
  "title": "Apple Charts schema",
  "required": [
    "unexpected_field_that_should_fail_the_validation_process"
  ],
  "unexpected_field_that_should_fail_the_validation_process": {
    "position": {
      "$id": "#/properties/position",
      "type": "integer",
      "title": "This is a dummy field that should not be found in real data frame.",
      "examples": [
        "1",
        "10"
      ],
      "pattern": "^([\\d]+)$"
    }
  }
}
