{
  "$schema": "http://json-schema.org/schema#",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "continent": {
      "type": "string"
    },
    "country": {
      "type": [
        "null",
        "string"
      ]
    },
    "region": {
      "type": [
        "null",
        "string"
      ]
    },
    "subregion": {
      "type": [
        "null",
        "string"
      ]
    },
    "geo": {
      "type": [
        "null",
        "string"
      ]
    },
    "metro": {
      "type": [
        "null",
        "string"
      ]
    },
    "locality": {
      "type": [
        "null",
        "string"
      ]
    },
    "type": {
      "type": "string"
    }
  },
  "required": [
    "name",
    "continent",
    "country",
    "region",
    "subregion",
    "geo",
    "metro",
    "locality",
    "type"
  ],
  "additionalProperties": false
}