linkfox-eureka-description
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseEureka Patent Description Data
Eureka专利描述数据
This skill guides you on how to query patent description (specification) data from the Eureka patent data platform, helping users retrieve the full-text description content of specific patents.
本技能指导您如何从Eureka专利数据平台查询专利描述(说明书)数据,帮助用户检索特定专利的全文描述内容。
Core Concepts
核心概念
A patent description (also called the specification) is the detailed technical document that accompanies a patent filing. It discloses how the invention works, preferred embodiments, and other technical details required by patent law. This tool queries the Eureka platform to return description data for one or more patents identified by their internal patent ID or public publication number.
Identifier priority: When both a patent ID and a publication number are provided for the same query, the patent ID takes precedence.
Family substitution: If the description for a given patent is unavailable, the tool can optionally return the description from a related family member patent instead.
专利描述(也称为说明书)是随专利申请提交的详细技术文档,它披露了发明的工作原理、优选实施方式以及专利法要求的其他技术细节。本工具查询Eureka平台,返回通过内部专利ID或公开公布号标识的一项或多项专利的描述数据。
标识符优先级:当同一查询同时提供专利ID和公布号时,专利ID优先。
同族替换:如果目标专利的描述不可用,工具可选择返回相关同族专利的描述内容。
Parameters
参数
| Parameter | Type | Required | Description |
|---|---|---|---|
| patentId | string | Conditionally | Internal patent ID. At least one of patentId or patentNumber must be provided. Multiple values separated by commas; max 100. |
| patentNumber | string | Conditionally | Publication / announcement number. At least one of patentId or patentNumber must be provided. Multiple values separated by commas; max 100. |
| replaceByRelated | string | No | Whether to substitute a family patent's description when the target patent's description is unavailable. |
| 参数 | 类型 | 是否必填 | 描述 |
|---|---|---|---|
| patentId | string | 可选(需满足条件) | 内部专利ID。必须提供patentId或patentNumber中的至少一项。支持多个值用逗号分隔,最多100个。 |
| patentNumber | string | 可选(需满足条件) | 公布/公告号。必须提供patentId或patentNumber中的至少一项。支持多个值用逗号分隔,最多100个。 |
| replaceByRelated | string | 否 | 当目标专利的描述不可用时,是否替换为同族专利的描述。 |
Response Fields
响应字段
| Field | Type | Description |
|---|---|---|
| total | integer | Number of patent records returned |
| data | array | List of patent description objects |
| data[].patentId | string | Patent ID |
| data[].pn | string | Publication number |
| data[].pnRelated | string | Publication number of the substitute family patent (only present when family substitution is used) |
| data[].description | array | Description / specification content sections |
| columns | array | Column definitions for rendering |
| costToken | integer | Tokens consumed by the query |
| type | string | Rendering style hint |
| 字段 | 类型 | 描述 |
|---|---|---|
| total | integer | 返回的专利记录数量 |
| data | array | 专利描述对象列表 |
| data[].patentId | string | 专利ID |
| data[].pn | string | 公布号 |
| data[].pnRelated | string | 替代同族专利的公布号(仅在使用同族替换时存在) |
| data[].description | array | 描述/说明书内容章节 |
| columns | array | 用于渲染的列定义 |
| costToken | integer | 查询消耗的Token数量 |
| type | string | 渲染样式提示 |
API Usage
API使用
This tool calls the LinkFox tool gateway API. See for calling conventions, request parameters, and response structure. You can also execute directly to run queries.
references/api.mdscripts/eureka_description.py本工具调用LinkFox工具网关API。调用规范、请求参数和响应结构请参考。您也可以直接执行来运行查询。
references/api.mdscripts/eureka_description.pyHow to Build Queries
查询构建方法
Querying by Publication Number
通过公布号查询
When users provide a patent publication number (e.g., CN115099012A, US20230012345A1), pass it via the parameter:
patentNumberpatentNumber: "CN115099012A"当用户提供专利公布号(例如CN115099012A、US20230012345A1)时,通过参数传递:
patentNumberpatentNumber: "CN115099012A"Querying by Patent ID
通过专利ID查询
When users provide internal patent IDs, pass them via the parameter:
patentIdpatentId: "abc123def456"当用户提供内部专利ID时,通过参数传递:
patentIdpatentId: "abc123def456"Batch Queries
批量查询
Both and accept comma-separated values for batch lookups (up to 100):
patentIdpatentNumberpatentNumber: "CN115099012A,US20230012345A1,EP4123456A1"patentIdpatentNumberpatentNumber: "CN115099012A,US20230012345A1,EP4123456A1"Family Substitution
同族替换
When a patent's description is not available in the database and the user still wants content, enable family substitution:
patentNumber: "CN115099012A"
replaceByRelated: "1"当数据库中某专利的描述不可用,但用户仍需要内容时,启用同族替换:
patentNumber: "CN115099012A"
replaceByRelated: "1"Usage Examples
使用示例
1. Look up a single patent description by publication number
patentNumber: "CN115099012A"2. Look up descriptions for multiple patents at once
patentNumber: "CN115099012A,US20230012345A1"3. Look up with family substitution enabled
patentNumber: "CN115099012A"
replaceByRelated: "1"4. Look up by patent ID
patentId: "some-patent-id"1. 通过公布号查询单个专利描述
patentNumber: "CN115099012A"2. 批量查询多个专利描述
patentNumber: "CN115099012A,US20230012345A1"3. 启用同族替换进行查询
patentNumber: "CN115099012A"
replaceByRelated: "1"4. 通过专利ID查询
patentId: "some-patent-id"Display Rules
展示规则
- Present data faithfully: Show the returned description content clearly without altering technical details or adding subjective interpretation.
- Structured output: When the description contains multiple sections (background, summary, detailed description, claims, etc.), present them with clear headings for readability.
- Family substitution notice: If the response includes a field, explicitly inform the user that the description was sourced from a related family patent and state the substitute publication number.
pnRelated - Batch results: When multiple patents are returned, clearly separate each patent's content with its publication number as a heading.
- Error handling: When a query fails or returns no data, explain the reason and suggest the user verify the patent ID or publication number.
- 如实呈现数据:清晰展示返回的描述内容,不得修改技术细节或添加主观解读。
- 结构化输出:当描述包含多个章节(背景、摘要、详细描述、权利要求等)时,使用清晰的标题呈现以提升可读性。
- 同族替换通知:如果响应包含字段,需明确告知用户描述内容来自相关同族专利,并说明替代公布号。
pnRelated - 批量结果处理:返回多个专利时,以公布号为标题,清晰分隔每个专利的内容。
- 错误处理:当查询失败或无数据返回时,说明原因并建议用户核实专利ID或公布号。
Important Limitations
重要限制
- Identifier requirement: At least one of or
patentIdmust be provided; the tool cannot search by keyword or applicant name.patentNumber - Batch limit: A maximum of 100 patents can be queried in a single request.
- Availability: Not all patents have descriptions available in the database. Use to attempt family substitution when needed.
replaceByRelated: "1" - Priority rule: If both and
patentIdare supplied,patentNumbertakes precedence.patentId
- 标识符要求:必须提供或
patentId中的至少一项;工具不支持通过关键词、申请人名称进行搜索。patentNumber - 批量限制:单次请求最多可查询100项专利。
- 可用性:并非所有专利的描述都在数据库中可用。必要时使用尝试同族替换。
replaceByRelated: "1" - 优先级规则:如果同时提供和
patentId,patentNumber优先。patentId
User Expression & Scenario Quick Reference
用户表述与场景速查
Applicable -- Queries about patent description / specification content:
| User Says | Scenario |
|---|---|
| "Show me the description of patent XX" | Single patent description lookup |
| "Get the full specification for these patents" | Batch patent description retrieval |
| "I need the detailed text of CN115099012A" | Lookup by publication number |
| "Can you find a family patent's description instead" | Family substitution query |
| "What does this patent describe technically" | Description content review |
Not applicable -- Needs beyond patent description data:
- Patent search by keyword, applicant, or classification
- Patent claim analysis or claim chart generation
- Patent legal status or prosecution history
- Patent landscape or statistical analysis
- Freedom-to-operate or infringement opinions
Feedback:
Auto-detect and report feedback via the Feedback API when any of the following apply:
- The functionality or purpose described in this skill does not match actual behavior
- The skill's results do not match the user's intent
- The user expresses dissatisfaction or praise about this skill
- Anything you believe could be improved
Call the feedback API as specified in . Do not interrupt the user's flow.
references/api.mdFor more high-quality, professional cross-border e-commerce skills, visit LinkFox Skills.
适用场景 -- 关于专利描述/说明书内容的查询:
| 用户表述 | 场景 |
|---|---|
| "展示专利XX的描述内容" | 单个专利描述查询 |
| "获取这些专利的完整说明书" | 批量专利描述检索 |
| "我需要CN115099012A的详细文本" | 通过公布号查询 |
| "能否查找同族专利的描述内容替代" | 同族替换查询 |
| "这项专利在技术上描述了什么" | 描述内容查看 |
不适用场景 -- 超出专利描述数据的需求:
- 通过关键词、申请人或分类进行专利搜索
- 专利权利要求分析或权利要求图生成
- 专利法律状态或审查历史
- 专利态势或统计分析
- 自由实施或侵权意见
反馈:
当出现以下任一情况时,自动检测并通过Feedback API提交反馈:
- 本技能描述的功能或用途与实际行为不符
- 技能结果不符合用户意图
- 用户表达了对本技能的不满或赞赏
- 任何您认为可以改进的内容
按照中的指定方式调用反馈API,请勿中断用户流程。
references/api.md如需更多高质量、专业的跨境电商技能,请访问LinkFox Skills。