{
  "openapi": "3.0.3",
  "info": {
    "title": "Fresh Cuts Barber Studio API",
    "description": "API for discovering barber services, studio locations, and online booking options for Fresh Cuts Barber Studio in Kato Patissia, Athens.",
    "version": "1.0.0",
    "contact": {
      "name": "Fresh Cuts Barber Studio",
      "url": "https://freshcuts.gr"
    }
  },
  "servers": [
    {
      "url": "https://freshcuts.gr",
      "description": "Production Server"
    }
  ],
  "paths": {
    "/api/health": {
      "get": {
        "summary": "API Health Check",
        "operationId": "getHealth",
        "responses": {
          "200": {
            "description": "API is healthy",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "string",
                      "example": "ok"
                    },
                    "service": {
                      "type": "string",
                      "example": "Fresh Cuts Barber Studio API"
                    },
                    "timestamp": {
                      "type": "string",
                      "example": "2026-08-13T17:30:00Z"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/services": {
      "get": {
        "summary": "List Barber Services",
        "operationId": "getServices",
        "responses": {
          "200": {
            "description": "List of services offered by Fresh Cuts Barber Studio",
            "content": {
              "text/html": {
                "schema": {
                  "type": "string"
                }
              },
              "text/markdown": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/.well-known/api-catalog": {
      "get": {
        "summary": "RFC 9727 API Catalog",
        "operationId": "getApiCatalog",
        "responses": {
          "200": {
            "description": "API Catalog in linkset+json format per RFC 9727",
            "content": {
              "application/linkset+json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    }
  }
}