{
  "openapi": "3.1.0",
  "info": {
    "title": "Workable marketing site content index",
    "version": "1.0.0",
    "description": "Machine-readable index of publicly accessible resources on the Workable marketing site. No authentication required.",
    "x-mcp-server-card": "https://www.workable.com/.well-known/mcp/server-card.json",
    "x-agent-skills": "https://www.workable.com/.well-known/agent-skills/index.json"
  },
  "servers": [{ "url": "https://www.workable.com" }],
  "paths": {
    "/sitemap.xml": {
      "get": {
        "summary": "List all published page URLs",
        "operationId": "getSitemap",
        "responses": {
          "200": {
            "description": "Sitemap XML",
            "content": { "application/xml": {} }
          }
        }
      }
    },
    "/llms.txt": {
      "get": {
        "summary": "Curated site index for LLM and agent clients",
        "operationId": "getLlmsTxt",
        "responses": {
          "200": {
            "description": "llms.txt document describing the site for LLMs",
            "content": { "text/plain": {} }
          }
        }
      }
    },
    "/robots.txt": {
      "get": {
        "summary": "Crawler rules and content signals",
        "operationId": "getRobotsTxt",
        "responses": {
          "200": {
            "description": "robots.txt with content signals for AI use",
            "content": { "text/plain": {} }
          }
        }
      }
    }
  }
}
