{
  "openapi": "3.0.0",
  "info": {
    "title": "Saad Rasheed Blog APIs",
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "https://blog.saadrasheed.life"
    }
  ],
  "paths": {
    "/payment-stub": {
      "post": {
        "summary": "Mock payment endpoint",
        "x-payment-info": {
          "intent": "charge",
          "method": "stripe",
          "amount": 100,
          "currency": "USD"
        },
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  }
}
