{
  "openapi": "3.0.0",
  "info": {
    "title": "Ixora Group Knowledge API",
    "description": "Machine-readable API for Ixora Group company data, services, sectors, and statistics",
    "version": "1.0.0",
    "contact": {
      "name": "Ixora Group",
      "email": "hello@ixoragroup.com",
      "url": "https://ixoragroup.com"
    }
  },
  "servers": [
    {
      "url": "https://ixoragroup.com/api",
      "description": "Production API"
    }
  ],
  "paths": {
    "/company.json": {
      "get": {
        "operationId": "getCompanyInfo",
        "summary": "Get comprehensive company information",
        "description": "Returns all company data including leadership, contact info, statistics, and ecosystem companies",
        "responses": {
          "200": {
            "description": "Company information",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Company"
                }
              }
            }
          }
        }
      }
    },
    "/services.json": {
      "get": {
        "operationId": "getServices",
        "summary": "Get all facility management services",
        "description": "Returns detailed information about cleaning, security, hard services, pest control, and payroll services",
        "responses": {
          "200": {
            "description": "Services catalog",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ServicesCatalog"
                }
              }
            }
          }
        }
      }
    },
    "/sectors.json": {
      "get": {
        "operationId": "getSectors",
        "summary": "Get industry sectors served",
        "description": "Returns information about data centers, aviation, education, commercial, manufacturing, retail, and government sectors",
        "responses": {
          "200": {
            "description": "Sectors data",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SectorsCatalog"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "Company": {
        "type": "object",
        "properties": {
          "name": { "type": "string" },
          "legalName": { "type": "string" },
          "founded": { "type": "string" },
          "headquarters": { "type": "object" },
          "leadership": { "type": "array" },
          "contact": { "type": "object" },
          "statistics": { "type": "object" },
          "ecosystem": { "type": "array" }
        }
      },
      "ServicesCatalog": {
        "type": "object",
        "properties": {
          "services": { "type": "array" }
        }
      },
      "SectorsCatalog": {
        "type": "object",
        "properties": {
          "sectors": { "type": "array" }
        }
      }
    }
  }
}
