linkfox-zhihuiya-claim-data

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Zhihuiya Patent Claims Data

智慧芽(PatSnap)专利权利要求数据

This skill guides you on how to retrieve and present patent claims data from the Zhihuiya (PatSnap) patent database, helping IP professionals, patent analysts, and R&D teams quickly access the claims section of any patent.
本技能将指导您如何从智慧芽(PatSnap)专利数据库中检索并展示专利权利要求数据,帮助知识产权专业人士、专利分析师及研发团队快速获取任意专利的权利要求部分。

Core Concepts

核心概念

Patent claims define the legal scope of protection granted by a patent. They are the most critical part of a patent document for infringement analysis, freedom-to-operate assessments, and prior art comparisons. This tool retrieves the full set of claims for one or more patents by their patent ID or publication number.
Family substitution: When a patent's claims are unavailable in the database, you can optionally request that claims from a related family member patent be returned instead. This is controlled by the
replaceByRelated
parameter.
专利权利要求定义了专利授予的法律保护范围,是专利文档中用于侵权分析、自由实施评估和现有技术对比的最关键部分。本工具可通过专利ID或公开号检索一项或多项专利的完整权利要求集合。
同族专利替换:当目标专利的权利要求在数据库中无法获取时,您可选择请求返回其同族专利的权利要求。此功能由
replaceByRelated
参数控制。

Data Fields

数据字段

FieldAPI NameDescriptionExample
Patent IDpatentIdInternal Zhihuiya patent identifier98a1b2c3-...
Publication NumberpnPublication or grant number of the patentCN115000000A
Related PNpnRelatedPublication number of the family member used as substitute (only present when family substitution occurred)US20230001234A1
ClaimsclaimsArray of claim objects containing the claim text and metadata[...]
Claim CountclaimCountTotal number of claims in the patent15
字段API名称描述示例
专利IDpatentId智慧芽内部专利标识符98a1b2c3-...
公开号pn专利的公开号或授权号CN115000000A
同族公开号pnRelated用作替换的同族专利的公开号(仅在发生同族替换时存在)US20230001234A1
权利要求claims包含权利要求文本及元数据的对象数组[...]
权利要求数量claimCount专利的权利要求总数15

Parameter Guide

参数指南

Required (at least one)

必填参数(至少一项)

You must provide at least one of the following two parameters. If both are provided,
patentId
takes priority.
ParameterDescriptionFormat
patentIdOne or more Zhihuiya patent IDsComma-separated string, max 100 entries
patentNumberOne or more publication/grant numbersComma-separated string, max 100 entries
您必须提供以下两项参数中的至少一项。若同时提供两项,
patentId
优先生效。
参数描述格式
patentId一个或多个智慧芽专利ID逗号分隔的字符串,最多100条
patentNumber一个或多个公开号/授权号逗号分隔的字符串,最多100条

Optional

可选参数

ParameterDescriptionValues
replaceByRelatedWhether to substitute with a family member's claims when the target patent's claims are unavailable
1
= yes,
0
= no (default)
参数描述取值
replaceByRelated当目标专利的权利要求无法获取时,是否使用同族专利的权利要求进行替换
1
=是,
0
=否(默认)

How to Choose Between patentId and patentNumber

如何选择patentId与patentNumber

  • Use patentNumber when the user provides a publication or grant number (e.g.,
    CN115000000A
    ,
    US11234567B2
    ). This is the most common scenario.
  • Use patentId when the user provides an internal Zhihuiya identifier, typically obtained from a previous Zhihuiya search result.
  • When the user provides both, pass both and the API will prefer patentId.
  • 当用户提供公开号或授权号(如
    CN115000000A
    US11234567B2
    )时,使用patentNumber。这是最常见的场景。
  • 当用户提供智慧芽内部标识符(通常来自之前的智慧芽搜索结果)时,使用patentId
  • 当用户同时提供两项参数时,同时传递两者,API将优先使用patentId。

Usage Examples

使用示例

1. Single patent by publication number
json
{"patentNumber": "CN115000000A"}
2. Multiple patents by publication number
json
{"patentNumber": "CN115000000A,US20230001234A1,EP4000000A1"}
3. Single patent by patent ID
json
{"patentId": "98a1b2c3-xxxx-xxxx-xxxx-xxxxxxxxxxxx"}
4. With family substitution enabled
json
{"patentNumber": "CN115000000A", "replaceByRelated": "1"}
5. Batch query with family substitution
json
{"patentNumber": "CN115000000A,JP2023100000A", "replaceByRelated": "1"}
1. 通过公开号检索单个专利
json
{"patentNumber": "CN115000000A"}
2. 通过公开号检索多个专利
json
{"patentNumber": "CN115000000A,US20230001234A1,EP4000000A1"}
3. 通过专利ID检索单个专利
json
{"patentId": "98a1b2c3-xxxx-xxxx-xxxx-xxxxxxxxxxxx"}
4. 启用同族专利替换
json
{"patentNumber": "CN115000000A", "replaceByRelated": "1"}
5. 批量查询并启用同族专利替换
json
{"patentNumber": "CN115000000A,JP2023100000A", "replaceByRelated": "1"}

Display Rules

展示规则

  1. Present claims clearly: Display claims in a numbered list preserving the original claim numbering. Use indentation or formatting to distinguish independent claims from dependent claims where possible.
  2. Highlight claim count: Always state the total number of claims returned for each patent.
  3. Family substitution notice: If
    pnRelated
    is present in a result, explicitly inform the user that the claims shown are from a family member patent and provide the family member's publication number.
  4. Batch results: When multiple patents are queried, organize results by patent with clear headings showing the publication number.
  5. Error handling: When a query fails, explain the reason based on the response and suggest the user verify the patent number format or try enabling family substitution.
  6. No subjective analysis: Present the raw claim text without legal interpretation unless the user specifically requests analysis.
  1. 清晰展示权利要求:保留原始编号,以有序列表形式展示权利要求。尽可能使用缩进或格式区分独立权利要求与从属权利要求。
  2. 突出权利要求数量:始终说明每项专利返回的权利要求总数。
  3. 同族替换提示:若结果中存在
    pnRelated
    ,需明确告知用户所展示的权利要求来自同族专利,并提供该同族专利的公开号。
  4. 批量结果整理:当查询多个专利时,按专利分类整理结果,使用清晰的标题显示公开号。
  5. 错误处理:当查询失败时,根据返回信息说明原因,并建议用户验证专利号格式或尝试启用同族专利替换。
  6. 避免主观分析:除非用户明确要求分析,否则仅展示原始权利要求文本,不进行法律解读。

Important Limitations

重要限制

  • At least one identifier required: Either
    patentId
    or
    patentNumber
    must be provided; omitting both will result in an error.
  • Batch limit: A maximum of 100 patents can be queried in a single request.
  • Claims availability: Not all patents have claims data available. Use
    replaceByRelated
    =
    1
    to attempt family member substitution when claims are missing.
  • Claim object structure: The individual claim objects within the
    claims
    array may vary in structure depending on the patent office and data source.
  • 至少需要一个标识符:必须提供
    patentId
    patentNumber
    中的一项;两项均省略将导致错误。
  • 批量查询限制:单次请求最多可查询100项专利。
  • 权利要求可用性:并非所有专利的权利要求数据都可获取。当权利要求缺失时,可设置
    replaceByRelated
    =
    1
    尝试同族专利替换。
  • 权利要求对象结构
    claims
    数组中的单个权利要求对象结构可能因专利局和数据源不同而有所差异。

User Expression & Scenario Quick Reference

用户表述与场景速查

Applicable -- Patent claims retrieval and analysis:
User SaysScenario
"Show me the claims of patent XX"Single patent claims lookup
"Get the claim text for these patents"Batch claims retrieval
"How many claims does patent XX have"Claim count query
"What are the independent claims of XX"Claims retrieval + display
"Compare claims of patent A and patent B"Multi-patent claims retrieval
"The claims are not available, try a family member"Family substitution query
"Patent claim scope", "claim language"Claims retrieval
Not applicable -- Needs beyond patent claims data:
  • Patent search or discovery (finding patents by keyword/topic)
  • Patent legal status or prosecution history
  • Patent citation or reference analysis
  • Patent full-text beyond claims (abstract, description, drawings)
  • Freedom-to-operate or infringement opinions (legal advice)
Feedback:
Auto-detect and report feedback via the Feedback API when any of the following apply:
  1. The functionality or purpose described in this skill does not match actual behavior
  2. The skill's results do not match the user's intent
  3. The user expresses dissatisfaction or praise about this skill
  4. Anything you believe could be improved
Call the feedback API as specified in
references/api.md
. Do not interrupt the user's flow.

For more high-quality, professional cross-border e-commerce skills, set LinkFox Skills.
适用场景——专利权利要求检索与分析:
用户表述场景
“展示专利XX的权利要求”单个专利权利要求查询
“获取这些专利的权利要求文本”批量权利要求检索
“专利XX有多少项权利要求”权利要求数量查询
“专利XX的独立权利要求是什么”权利要求检索与展示
“对比专利A和专利B的权利要求”多专利权利要求检索
“权利要求无法获取,尝试同族专利”同族专利替换查询
“专利权利要求范围”、“权利要求语言”权利要求检索
不适用场景——超出专利权利要求数据的需求:
  • 专利搜索或发现(通过关键词/主题查找专利)
  • 专利法律状态或审查历史
  • 专利引用或参考文献分析
  • 权利要求之外的专利全文(摘要、说明书、附图)
  • 自由实施或侵权意见(法律咨询)
反馈:
当出现以下任意情况时,自动通过Feedback API检测并上报反馈:
  1. 本技能描述的功能或用途与实际行为不符
  2. 技能结果与用户意图不符
  3. 用户表达了对本技能的不满或赞赏
  4. 任何您认为可以改进的内容
按照
references/api.md
中的指定方式调用反馈API,请勿中断用户流程。

如需更多高质量、专业的跨境电商技能,请访问LinkFox Skills