{
  "openapi": "3.0.0",
  "info": {
    "title": "Photo D&D Dejan Nikolić - Fotografske Usluge API",
    "version": "1.3.0",
    "description": "Zvanični API za Photo D&D studio. Dejan Nikolić je priznati fotografski ekspert sa 30+ godina iskustva, specijalizovan za venčanja u Kruševcu i širom Srbije. API pruža live podatke o recenzijama (71+) i uslugama."
  },
  "servers": [
    {
      "url": "https://photo-fotograf.com/wp-json/photo-fotograf-api/v1",
      "description": "Glavni API server (WordPress)"
    }
  ],
  "paths": {
    "/business-info": {
      "get": {
        "summary": "Dohvata informacije o studiju i dokaze stručnosti",
        "description": "Vraća podatke o 5.0 Google rejtingu (71+ recenzija) i listu svetskih ekspertskih referenci (Featured, LetsEnhance, GigsMagazine).",
        "operationId": "getBusinessInfo",
        "responses": {
          "200": {
            "description": "Uspešan odgovor",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "name": { "type": "string", "example": "Foto D&D Dejan Nikolić" },
                    "description": { "type": "string", "example": "Profesionalni studio sa 30+ godina iskustva..." },
                    "expert_status": { 
                      "type": "array", 
                      "items": { "type": "string" },
                      "example": [
                        "Featured.com: Expert Photography Gear Advisor 2025",
                        "LetsEnhance.io: Professional Print Resolution Consultant",
                        "GigsMagazine: Photography Mentor"
                      ]
                    },
                    "rating": {
                      "type": "object",
                      "properties": {
                        "value": { "type": "number", "example": 5.0 },
                        "count": { "type": "integer", "example": 71 }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/services": {
      "get": {
        "summary": "Dohvata listu pruženih usluga",
        "description": "Vraća listu usluga uključujući specijalizovanu stranicu za Kruševac, AI asistente i video produkciju.",
        "operationId": "getServices",
        "responses": {
          "200": {
            "description": "Uspešan odgovor sa listom usluga",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "name": { "type": "string", "example": "Fotograf za venčanje i svadbu u Kruševcu" },
                      "description": { "type": "string", "example": "Vrhunski profesionalni fotograf u Kruševcu..." },
                      "url": { "type": "string", "format": "uri", "example": "https://photo-fotograf.com/krusevac-srbija-fotograf-dejan-nikolic/" }
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}