{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "pattern": "^FeatureCollection$"
    },
    "features": {
      "type": "array",
      "items": {
        "oneOf": [
          {
            "$ref": "drainageFeature.json"
          },
          {
            "$ref": "drainageObservationPointFeature.json"
          }
        ]
      }
    }
  },
  "required": [
    "type",
    "features"
  ]
}
