{
  "openapi": "3.1.0",
  "info": {
    "title": "Gaier Lighting API",
    "version": "1.0.0",
    "description": "Quote submission for AI agents",
    "x-guidance": "POST /api/quote with product and email. Payment required via MPP."
  },
  "servers": [
    {
      "url": "https://gaierlighting.com"
    }
  ],
  "paths": {
    "/api/quote": {
      "post": {
        "summary": "Submit a lighting quote",
        "operationId": "requestQuote",
        "x-payment-info": {
          "intent": "charge",
          "method": "tempo",
          "amount": "0.01",
          "currency": "USD",
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.010000"
          },
          "protocols": [
            {
              "mpp": {
                "method": "tempo",
                "intent": "charge",
                "currency": "USD"
              }
            }
          ]
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "product": {
                    "type": "string"
                  },
                  "email": {
                    "type": "string",
                    "format": "email"
                  }
                },
                "required": [
                  "product",
                  "email"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK"
          },
          "402": {
            "description": "Payment Required"
          }
        }
      }
    }
  }
}