{"openapi":"3.1.0","info":{"title":"WorkPick Press API","description":"企業のプレスリリースを構造化データとして提供する公開 API。AI エージェントからの直接アクセスを想定。","version":"1.0.0","contact":{"url":"https://work-pick.com"}},"servers":[{"url":"https://work-pick.com"}],"paths":{"/press/api/articles":{"get":{"summary":"公開済み記事の一覧を取得","parameters":[{"name":"category","in":"query","schema":{"type":"string"}},{"name":"limit","in":"query","schema":{"type":"integer","default":20}},{"name":"offset","in":"query","schema":{"type":"integer","default":0}}],"responses":{"200":{"description":"記事一覧","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ArticleSummary"}}}}}}}},"/press/api/articles/{slug}":{"get":{"summary":"記事の詳細を取得（構造化データ含む）","parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"記事詳細","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ArticleDetail"}}}},"404":{"description":"記事が見つかりません"}}}}},"components":{"schemas":{"ArticleSummary":{"type":"object","properties":{"slug":{"type":"string"},"headline":{"type":"string"},"lead":{"type":"string","nullable":true},"category":{"type":"string","nullable":true},"tags":{"type":"array","items":{"type":"string"},"nullable":true},"companyName":{"type":"string","nullable":true},"publishedAt":{"type":"string","format":"date-time","nullable":true}}},"ArticleDetail":{"allOf":[{"$ref":"#/components/schemas/ArticleSummary"},{"type":"object","properties":{"body":{"type":"string","nullable":true},"facts":{"type":"array","items":{"type":"object"},"nullable":true},"jsonLd":{"type":"object","nullable":true},"sourceUrl":{"type":"string","nullable":true},"editorialComment":{"type":"string","nullable":true},"relatedJobs":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"title":{"type":"string"},"reward":{"type":"integer","nullable":true}}}}}}]}}}}