{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "dict:districts Value",
  "type": "object",
  "required": ["id", "name", "province_id"],
  "properties": {
    "id": {
      "type": "integer",
      "description": "İlçe birincil anahtarı (districts.id)"
    },
    "name": {
      "type": "string",
      "description": "İlçe adı"
    },
    "province_id": {
      "type": "integer",
      "description": "Bağlı olduğu il (provinces.id)"
    }
  },
  "additionalProperties": false
}
