{
  "openapi": "3.1.0",
  "info": {
    "title": "ARO Consultant API",
    "description": "Strategic consulting that transforms businesses. We help companies identify growth opportunities, optimize operations, and build sustainable competitive advantages.",
    "version": "1.0.0",
    "contact": {
      "email": "hello@aroconsultant.com"
    }
  },
  "servers": [
    {
      "url": "https://aroconsultant.com"
    }
  ],
  "paths": {
    "/api/v1/services": {
      "get": {
        "operationId": "getServiceCatalog",
        "summary": "List consulting services",
        "tags": [
          "Discovery"
        ],
        "responses": {
          "200": {
            "description": "Service catalog",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "ok": {
                      "type": "boolean"
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "services": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "name": {
                                "type": "string"
                              },
                              "description": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/faq": {
      "get": {
        "operationId": "getFaq",
        "summary": "Get frequently asked questions",
        "tags": [
          "Discovery"
        ],
        "responses": {
          "200": {
            "description": "FAQ list",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contact": {
      "post": {
        "operationId": "submitConsultationRequest",
        "summary": "Submit a consultation request",
        "tags": [
          "Booking"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "name",
                  "email",
                  "message"
                ],
                "properties": {
                  "name": {
                    "type": "string",
                    "description": "Full name"
                  },
                  "email": {
                    "type": "string",
                    "format": "email"
                  },
                  "phone": {
                    "type": "string"
                  },
                  "company": {
                    "type": "string"
                  },
                  "message": {
                    "type": "string",
                    "description": "How can we help?"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Request received"
          },
          "400": {
            "description": "Validation error"
          }
        }
      }
    }
  }
}