{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "dict:addresses Value",
  "type": "object",
  "required": ["id", "province_id", "district_id", "neighborhood_id", "coordinate_id", "address_line", "description"],
  "properties": {
    "id": {
      "type": "integer",
      "description": "Adres birincil anahtarı (addresses.id)"
    },
    "province_id": {
      "type": "integer",
      "description": "Bağlı il (provinces.id)"
    },
    "district_id": {
      "type": "integer",
      "description": "Bağlı ilçe (districts.id)"
    },
    "neighborhood_id": {
      "type": "integer",
      "description": "Bağlı mahalle (neighborhoods.id)"
    },
    "coordinate_id": {
      "type": "integer",
      "description": "Bağlı koordinat (coordinates.id)"
    },
    "address_line": {
      "type": "string",
      "description": "İnsan okunur açık adres satırı"
    },
    "description": {
      "type": "string",
      "description": "Adresin kullanım amacını açıklayan not"
    }
  },
  "additionalProperties": false
}
