{
  "openapi": "3.1.0",
  "info": {
    "title": "Bepto Pneumatic Website API",
    "version": "1.0.0",
    "description": "Read-only public website endpoints for Bepto Pneumatic, the pneumatic product line of Bepto Industrial. Customer inquiry submission is intentionally excluded because it creates CRM records and operational notifications.",
    "contact": {
      "name": "Bepto Pneumatic",
      "email": "Pneumatic@bepto.com",
      "url": "https://rodlesspneumatic.com/contact/"
    }
  },
  "servers": [
    {
      "url": "https://rodlesspneumatic.com",
      "description": "Production"
    }
  ],
  "externalDocs": {
    "description": "Human-readable API documentation",
    "url": "https://rodlesspneumatic.com/api-docs/"
  },
  "tags": [
    {
      "name": "Localization",
      "description": "Published language alternatives for a Blog article."
    }
  ],
  "paths": {
    "/api/localized-blog-links.json": {
      "get": {
        "tags": [
          "Localization"
        ],
        "operationId": "getLocalizedBlogLinks",
        "summary": "Get published language alternatives for a Blog article",
        "description": "Returns the available locale URLs for a published Blog article path.",
        "parameters": [
          {
            "name": "path",
            "in": "query",
            "required": true,
            "description": "An English or localized Blog article path beginning with a slash.",
            "schema": {
              "type": "string",
              "pattern": "^/.*/?blog/.*$",
              "example": "/blog/what-is-a-pneumatic-cylinder/"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Published language links keyed by locale.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/LocalizedBlogLinks"
                }
              }
            }
          },
          "400": {
            "description": "The supplied path is not a Blog article path.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/LocalizedBlogLinks"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "ApiError": {
        "type": "object",
        "required": [
          "ok",
          "message",
          "error"
        ],
        "properties": {
          "ok": {
            "type": "boolean",
            "const": false
          },
          "message": {
            "type": "string"
          },
          "error": {
            "type": "object",
            "required": [
              "code",
              "message"
            ],
            "properties": {
              "code": {
                "type": "string"
              },
              "message": {
                "type": "string"
              }
            }
          }
        }
      },
      "LocalizedBlogLinks": {
        "type": "object",
        "required": [
          "links"
        ],
        "properties": {
          "links": {
            "type": "object",
            "additionalProperties": {
              "type": "string",
              "format": "uri"
            }
          }
        }
      }
    }
  }
}