{
  "openapi": "3.1.0",
  "info": {
    "title": "Nextflow.io Public Endpoints",
    "version": "1.0.0",
    "description": "Read-only public endpoints exposed by the Nextflow marketing site."
  },
  "servers": [
    {
      "url": "https://nextflow.io"
    }
  ],
  "paths": {
    "/feed.xml": {
      "get": {
        "summary": "RSS feed",
        "description": "Atom/RSS feed of Nextflow blog posts and updates.",
        "responses": {
          "200": {
            "description": "RSS feed document",
            "content": {
              "application/rss+xml": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/.well-known/api-catalog": {
      "get": {
        "summary": "API catalog",
        "description": "RFC 9727 linkset describing public programmatic resources.",
        "responses": {
          "200": {
            "description": "API catalog linkset",
            "content": {
              "application/linkset+json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    }
  }
}
