{
  "openapi": "3.1.0",
  "info": {
    "title": "Nöbetçi Eczane Bulucu Public API",
    "description": "Türkiye'de güncel nöbetçi (on-duty) eczane verisini il, ilçe veya konum bazında döndürür. Veri kaynağı: T.C. Sağlık Bakanlığı İl Sağlık Müdürlükleri + Türk Eczacılar Birliği.",
    "version": "1.0.0",
    "contact": {
      "name": "Nöbetçi Eczane Bulucu",
      "url": "https://nobetcieczanebulucu.com",
      "email": "iletisim@nobetcieczanebulucu.com"
    },
    "license": {
      "name": "CC BY 4.0",
      "url": "https://creativecommons.org/licenses/by/4.0/"
    }
  },
  "servers": [
    {
      "url": "https://nobetcieczanebulucu.com"
    }
  ],
  "paths": {
    "/api/public/duty/{il}": {
      "get": {
        "operationId": "getDutyByCity",
        "summary": "Bir ildeki bugünkü tüm nöbetçi eczaneler",
        "parameters": [
          {
            "name": "il",
            "in": "path",
            "required": true,
            "description": "İl slug (örn. istanbul, ankara, izmir)",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Nöbetçi eczane listesi",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DutyResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/public/duty/{il}/{ilce}": {
      "get": {
        "operationId": "getDutyByDistrict",
        "summary": "Bir ilçedeki bugünkü nöbetçi eczaneler",
        "parameters": [
          {
            "name": "il",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ilce",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Nöbetçi eczane listesi",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DutyResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/public/nearby": {
      "get": {
        "operationId": "getDutyByLocation",
        "summary": "Konuma en yakın nöbetçi eczaneler",
        "parameters": [
          {
            "name": "lat",
            "in": "query",
            "required": true,
            "schema": {
              "type": "number",
              "format": "float"
            }
          },
          {
            "name": "lng",
            "in": "query",
            "required": true,
            "schema": {
              "type": "number",
              "format": "float"
            }
          },
          {
            "name": "radius",
            "in": "query",
            "required": false,
            "description": "Metre",
            "schema": {
              "type": "integer",
              "default": 5000
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Yakındaki nöbetçi eczaneler",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DutyResponse"
                }
              }
            }
          }
        }
      }
    },
    "/feed.kml": {
      "get": {
        "operationId": "getKmlFeed",
        "summary": "Bugünkü tüm nöbetçi eczanelerin KML feed'i (Apple Maps / Bing Places / Google Earth)",
        "responses": {
          "200": {
            "description": "KML XML"
          }
        }
      }
    },
    "/places-feed.json": {
      "get": {
        "operationId": "getPlacesFeed",
        "summary": "Bugünkü tüm nöbetçi eczaneler — düz JSON dump",
        "responses": {
          "200": {
            "description": "Places JSON"
          }
        }
      }
    },
    "/llms-full.txt": {
      "get": {
        "operationId": "getLlmsFull",
        "summary": "Tüm site içeriği — düz metin, LLM tüketimi için",
        "responses": {
          "200": {
            "description": "text/plain markdown dump"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "Pharmacy": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer"
          },
          "ad": {
            "type": "string",
            "description": "Eczane adı"
          },
          "adres": {
            "type": "string"
          },
          "telefon": {
            "type": "string"
          },
          "il": {
            "type": "string"
          },
          "ilce": {
            "type": "string"
          },
          "lat": {
            "type": "number",
            "format": "float"
          },
          "lng": {
            "type": "number",
            "format": "float"
          },
          "url": {
            "type": "string",
            "format": "uri",
            "description": "Eczane detay sayfası"
          }
        },
        "required": [
          "id",
          "ad",
          "adres",
          "il",
          "ilce"
        ]
      },
      "DutyResponse": {
        "type": "object",
        "properties": {
          "tarih": {
            "type": "string",
            "format": "date",
            "description": "Nöbet tarihi"
          },
          "adet": {
            "type": "integer"
          },
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Pharmacy"
            }
          }
        },
        "required": [
          "tarih",
          "adet",
          "data"
        ]
      }
    }
  }
}