Patsnap Specification Drafting API

Specification Drafting APIs.

OpenAPI Specification

patsnap-specification-drafting-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Patsnap Open Platform AI Translation Specification Drafting API
  version: 1.0.0
  description: OpenAPI specification for Patsnap Open Platform APIs, including patent search, analytics, and Eureka AI capabilities.
servers:
- url: https://connect.patsnap.com
  description: Patsnap Open Platform API gateway
tags:
- name: Specification Drafting
  description: Specification Drafting APIs.
paths:
  /ai/specification/init-result/cnipa:
    post:
      operationId: ai37-2InitResultCnipa
      summary: AI37-2 Patent Drafting (CNIPA) - Initialization Summary Result
      description: Based on the input task_id, get initialization result
      tags:
      - Specification Drafting
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Successful ai37-2 patent drafting (cnipa) - initialization summary result response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AI37-2InitResultCnipaResponse'
        '201':
          description: Created.
        '401':
          description: Unauthorized.
        '403':
          description: Forbidden.
        '404':
          description: Not Found.
      externalDocs:
        description: API Reference documentation
        url: https://open.patsnap.com/devportal/api-reference/ai/specification/init-result/cnipa
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AI37-2InitResultCnipaRequest'
  /ai/specification/extract-feature/cnipa:
    post:
      operationId: ai37-3ExtractFeatureCnipa
      summary: AI37-3 Patent Specification Drafting (CNIPA) - Technical Feature Extraction
      description: Based on the task_id and technology category returned by the specification initialization interface, extract the technical feature information of the specification, including feature tree (containing claim features and concept words) and term lists, providing basic data for subsequent report generation.
      tags:
      - Specification Drafting
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Successful ai37-3 patent specification drafting (cnipa) - technical feature extraction response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AI37-3ExtractFeatureCnipaResponse'
        '201':
          description: Created.
        '401':
          description: Unauthorized.
        '403':
          description: Forbidden.
        '404':
          description: Not Found.
      externalDocs:
        description: API Reference documentation
        url: https://open.patsnap.com/devportal/api-reference/ai/specification/extract-feature/cnipa
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AI37-3ExtractFeatureCnipaRequest'
  /ai/specification/init/cnipa:
    post:
      operationId: ai37-1InitCnipa
      summary: AI37-1 Patent Drafting (CNIPA) - Initialization Summary
      description: Based on the input disclosure content and claims content, perform specification initialization processing, including sensitive word detection, language detection, obtaining classification numbers, technology type recognition, technical problem/technical methods/technical benefits extraction, embodiment outline generation, etc., and return task_id for subsequent processes.
      tags:
      - Specification Drafting
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Successful ai37-1 patent drafting (cnipa) - initialization summary response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AI37-1InitCnipaResponse'
        '201':
          description: Created.
        '401':
          description: Unauthorized.
        '403':
          description: Forbidden.
        '404':
          description: Not Found.
      externalDocs:
        description: API Reference documentation
        url: https://open.patsnap.com/devportal/api-reference/ai/specification/init/cnipa
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AI37-1InitCnipaRequest'
  /ai/specification/generate-report/cnipa:
    post:
      operationId: ai37-4GenerateReportCnipa
      summary: AI37-4 Patent Specification Drafting (CNIPA) - Report Generation
      description: Based on the technical features obtained from previous interfaces and complete information input by users (including invention title, classification numbers, technical problems/methods/benefits, feature tree, term lists, embodiments, images, etc.), generate a complete patent specification report, support asynchronous processing, and return task_id for querying generation status.
      tags:
      - Specification Drafting
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Successful ai37-4 patent specification drafting (cnipa) - report generation response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AI37-4GenerateReportCnipaResponse'
        '201':
          description: Created.
        '401':
          description: Unauthorized.
        '403':
          description: Forbidden.
        '404':
          description: Not Found.
      externalDocs:
        description: API Reference documentation
        url: https://open.patsnap.com/devportal/api-reference/ai/specification/generate-report/cnipa
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AI37-4GenerateReportCnipaRequest'
  /ai/specification/download-report:
    post:
      operationId: ai37-5SpecificationDownloadReport
      summary: AI37-5 Patent Specification Drafting (CNIPA) - Report Download
      description: Based on the task_id returned by the generate specification report interface, query the report generation status and obtain the download link. After the report generation is completed, the complete patent specification document can be obtained through the returned download link.
      tags:
      - Specification Drafting
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Successful ai37-5 patent specification drafting (cnipa) - report download response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AI37-5SpecificationDownloadReportResponse'
        '201':
          description: Created.
        '401':
          description: Unauthorized.
        '403':
          description: Forbidden.
        '404':
          description: Not Found.
      externalDocs:
        description: API Reference documentation
        url: https://open.patsnap.com/devportal/api-reference/ai/specification/download-report
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AI37-5SpecificationDownloadReportRequest'
components:
  schemas:
    AI37-3ExtractFeatureCnipa_ClaimFeature:
      type: object
      properties:
        feature:
          type: string
          example: 三个独立气室共同组成横向的试验装置外壳
          description: Technical feature description
        concepts:
          type: array
          example:
          - 气室
          - 试验装置
          - 外壳
          description: Concept words list
        feature_deleted:
          type: integer
          format: int32
          example: 0
          description: Feature deleted flag
    AI37-2InitResultCnipa_EmbodimentOutlineItem:
      type: object
      properties:
        text:
          type: string
          example: 本实施例提供一种用于直流气体绝缘金属封闭输电线路的试验研究装置...
          description: Text content
        type:
          type: string
          example: 设备
          description: Type (Composition of matter,Machine, Process, Manufacture)
        label:
          type: string
          example: outline
          description: Label
        claim_text:
          type: string
          example: 一种用于直流气体绝缘金属封闭输电线路的试验研究装置
          description: Claim text
        claim_numbers:
          type: array
          example:
          - 1
          - 2
          - 3
          description: Claim numbers list
        embodiment_number:
          type: integer
          format: int32
          example: 1
          description: Embodiment number
        reference_embodiment_number:
          type: integer
          format: int32
          example: 1
          description: Reference embodiment number
    AI37-3ExtractFeatureCnipa_Term:
      type: object
      properties:
        name:
          type: string
          example: 气室
          description: Term name
        number:
          type: string
          example: 1
          description: Number
        annotated:
          type: boolean
          example: false
          description: Whether annotated
        unique_id:
          type: string
          example: 1
          description: Unique identifier
      required:
      - name
      - unique_id
    AI37-1InitCnipaResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/AI37-1InitCnipa_SpecificationInitResponse'
        status:
          type: boolean
          example: 'false'
          description: Status
        error_msg:
          type: string
          example: The request parameter format is incorrect!
          description: Error Message
        error_code:
          type: integer
          example: '0'
          description: Error Code
      required:
      - status
      - error_code
    AI37-2InitResultCnipa_SpecificationInitResponse:
      type: object
      properties:
        status:
          type: integer
          format: int32
          example: 2
          description: 'Export Status (1: Exporting, 2: Export successful, 3: Report generation exception)'
        benefit:
          type: string
          example: 采用三个气室形式的分段结构设计,减少了试验过程中气体的使用量,简化了充放气操作;\n通过安装在盆式绝缘子与高压导杆电极之间的电极过渡连接件,可方便更换高压导杆电极,实现不同形状和不同粗糙度的气体间隙绝缘特性试验;\n支柱绝缘子上设置屏蔽均压罩,可屏蔽高压导杆电极端部的电场,避免试验时出现电晕放电;\n可拆卸法兰结构设计便于更换电极和维护;\n多个石英玻璃观察窗口允许实时观察放电过程,提高试验的可视性;\n结构紧凑,操作便捷,满足直流GIL绝缘试验的多种需求。
          description: Technical benefits
        task_id:
          type: string
          example: 123e4567-e89b-12d3-a456-426614174000
          description: Task ID
        category:
          type: string
          example: 设备
          description: Technology category(Composition of matter,Machine, Process, Manufacture)
        classification:
          type: array
          example:
          - H01B17/36
          - G01R31/12
          - H02B13/065
          - H01B17/14
          - H02B13/035
          description: Classification list
        technical_methods:
          type: string
          example: 本发明提供一种用于直流气体绝缘金属封闭输电线路的试验研究装置,其具有大致\"L\"型的外形,包括:\n竖直方向上布置的高压引线端、高压均压环和硅橡胶复合绝缘子高压套管;\n水平方向上同轴分布的位于中间的高压导杆电极和外围的试验装置外壳;\n三个独立气室(1号、2号、3号气室)共同组成横向的试验装置外壳,各气室由盆式绝缘子隔离,且各气室均有独立充放气阀门和气压表或密度计;\n3号气室为主试验单元,可进行SF6气体间隙绝缘特性试验、绝缘子闪络特性试验和金属导电微粒试验;\n支柱绝缘子上设置有屏蔽均压罩,可屏蔽高压导杆电极端部的电场;\n高压导杆电极可通过电极过渡连接件进行更换;\n3号气室端部设有可拆卸法兰结构;\n多个石英玻璃观察窗口,用于观察放电过程;\n装置支撑座和辅助支撑架支撑试验装置本体。
          description: Technical methods
        technical_problem:
          type: string
          example: 现有SF6气体绝缘试验装置体积过大,气体消耗量大,充放气及净化工作量大;单一结构布局限制了试验类型,无法满足多样化试验需求;无法同时进行SF6气体间隙绝缘试验、绝缘子闪络特性试验及金属导电微粒试验;电极更换不便,影响试验效率。
          description: Technical problem
        embodiment_outline:
          type: array
          example:
          - text: 为使本申请实施例的目的、技术方案和优点更加清楚,下面将结合本发明实施例中的附图,对本申请实施例中的技术方案进行清楚、完整地描述,显然,所描述的实施例是本申请一部分实施例,而不是全部的实施例。基于本申请中的实施例,本领域普通技术人员在没有作出创造性劳动前提下所获得的所有其他实施例,都属于本发明保护的范围。
            label: common
          - type: 设备
            label: outline
            outline: outline
            claim_text: "\n1.一种用于直流气体绝缘金属封闭输电线路的试验研究装置,其具有大致“L”型的外形,包括竖直方向上布置的高压引线端、高压均压环和硅橡胶复合绝缘子高压套管;以及在水平方向上,同轴分布的位于中间的高压导杆电极和外围的试验装置外壳;1号气室、2号气室和3号气室共同组成横向的试验装置外壳,所述三个气室由1号盆式绝缘子和2号盆式绝缘子隔离成为独立的气室,所述三个气室还分别具有相应的独立充放气阀门:1号充放气阀门、2号充放气阀门和3号充放气阀门;所述每个充放气阀门上均设置有气压表或密度计;以及所述1号气室的气压保持恒定,不用于试验,所述3号气室为试验单元段,通过布置不同形式的棒板电极、同轴圆柱电极、不同规格的2号盆式绝缘子和支柱绝缘子以及金属导电微粒,在所述3号气室中进行SF6气体间隙绝缘特性试验、绝缘子闪络特性试验和金属导电微粒试验。\n\n  2.依据权利要求1所述的用于直流气体绝缘金属封闭输电线路的试验研究装置,其特征在于\n所述3号气室的3号充放气阀门上设置有带温度补偿的气体密度计。\n\n  3.依据权利要求2所述的用于直流气体绝缘金属封闭输电线路的试验研究装置,其特征在于\n所述支柱绝缘子上设置有屏蔽均压罩,屏蔽高压导杆电极端部的电场。\n\n  4.依据权利要求3所述的用于直流气体绝缘金属封闭输电线路的试验研究装置,其特征在于\n所述3号气室安装不同规格尺寸的同轴外壳电极以配合高压导杆电极组成的电极对,所述高压导杆电极通过2号盆式绝缘子右端的电极过渡连接件进行更换,从而通过改变所述高压导杆电极及其配套电极的尺寸和粗糙度,进行不同形状和不同粗糙度的气体间隙绝缘特性试验。\n\n  5.依据权利要求4所述的用于直流气体绝缘金属封闭输电线路的试验研究装置,其特征在于\n所述3号气室端部设有可拆卸法兰结构。\n\n  6.依据权利要求5所述的用于直流气体绝缘金属封闭输电线路的试验研究装置,其特征在于\n所述2号气室安装有1个1号石英玻璃观察窗口,所述3号气室上安装有2号石英玻璃观察窗口、3号石英玻璃观察窗口和主试验石英玻璃观察窗口各1个,所述石英玻璃为远紫外材料,对放电过程中发出的波长在200nm~800nm的光谱范围内光,其透过率大于90%。\n\n  7.依据权利要求1-6任一项所述的用于直流气体绝缘金属封闭输电线路的试验研究装置,其特征在于\n还具有不锈钢的装置支撑座和辅助支撑架支撑所述试验装置本体,使本体能够平稳放置和移动。"
            claim_numbers:
            - 1
            - 2
            - 3
            - 4
            - 5
            - 6
            - 7
            embodiment_number: 1
            reference_claim_number: []
          - text: 最后应说明的是:以上所述的仅是本申请的优选实施方式,本申请不限于以上实施例。可以理解,本领域技术人员在不脱离本申请的精神和构思的前提下直接导出或联想到的其他改进和变化,均应认为包含在本申请的保护范围之内。
            label: common
          description: Embodiment outline list
          items:
            $ref: '#/components/schemas/AI37-2InitResultCnipa_EmbodimentOutlineItem'
      required:
      - task_id
    AI37-4GenerateReportCnipa_Term:
      type: object
      properties:
        annotated:
          type: boolean
          example: false
          description: Whether annotated
        name:
          type: string
          example: 气室
          description: Term name
        number:
          type: string
          example: 1
          description: Number
        unique_id:
          type: string
          example: 1
          description: Unique identifier
      required:
      - name
      - unique_id
    AI37-3ExtractFeatureCnipaResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/AI37-3ExtractFeatureCnipa_SpecificationFeatureResponse'
        status:
          type: boolean
          example: 'false'
          description: Status
        error_msg:
          type: string
          example: The request parameter format is incorrect!
          description: Error Message
        error_code:
          type: integer
          example: '0'
          description: Error Code
      required:
      - status
      - error_code
    AI37-5SpecificationDownloadReport_NoveltySearchDownloadResponse:
      type: object
      properties:
        status:
          type: integer
          format: int32
          example: 2
          description: 'Export Status (1: Exporting, 2: Export successful, 3: Report generation exception)'
        task_id:
          type: string
          example: d12fcd63d27028b88a73168d5bca44d5
          description: task_id of the technical survey report
        report_url:
          type: string
          example: http://downloadurl
          description: Report file download link (returned when export status is successful)
    AI37-2InitResultCnipaResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/AI37-2InitResultCnipa_SpecificationInitResponse'
        status:
          type: boolean
          example: 'false'
          description: Status
        error_msg:
          type: string
          example: The request parameter format is incorrect!
          description: Error Message
        error_code:
          type: integer
          example: '0'
          description: Error Code
      required:
      - status
      - error_code
    AI37-4GenerateReportCnipa_NoveltySearchDownloadResponse:
      type: object
      properties:
        status:
          type: integer
          format: int32
          example: 2
          description: 'Export Status (1: Exporting, 2: Export successful, 3: Report generation exception)'
        task_id:
          type: string
          example: d12fcd63d27028b88a73168d5bca44d5
          description: task_id of the technical survey report
        report_url:
          type: string
          example: http://downloadurl
          description: Report file download link (returned when export status is successful)
    AI37-1InitCnipa_SpecificationInitResponse:
      type: object
      properties:
        status:
          type: integer
          format: int32
          example: 2
          description: 'Export Status (1: Exporting, 2: Export successful, 3: Report generation exception)'
        benefit:
          type: string
          example: 采用三个气室形式的分段结构设计,减少了试验过程中气体的使用量,简化了充放气操作;\n通过安装在盆式绝缘子与高压导杆电极之间的电极过渡连接件,可方便更换高压导杆电极,实现不同形状和不同粗糙度的气体间隙绝缘特性试验;\n支柱绝缘子上设置屏蔽均压罩,可屏蔽高压导杆电极端部的电场,避免试验时出现电晕放电;\n可拆卸法兰结构设计便于更换电极和维护;\n多个石英玻璃观察窗口允许实时观察放电过程,提高试验的可视性;\n结构紧凑,操作便捷,满足直流GIL绝缘试验的多种需求。
          description: Technical benefits
        task_id:
          type: string
          example: 123e4567-e89b-12d3-a456-426614174000
          description: Task ID
        category:
          type: string
          example: 设备
          description: Technology category(Composition of matter,Machine, Process, Manufacture)
        classification:
          type: array
          example:
          - H01B17/36
          - G01R31/12
          - H02B13/065
          - H01B17/14
          - H02B13/035
          description: Classification list
        technical_methods:
          type: string
          example: 本发明提供一种用于直流气体绝缘金属封闭输电线路的试验研究装置,其具有大致\"L\"型的外形,包括:\n竖直方向上布置的高压引线端、高压均压环和硅橡胶复合绝缘子高压套管;\n水平方向上同轴分布的位于中间的高压导杆电极和外围的试验装置外壳;\n三个独立气室(1号、2号、3号气室)共同组成横向的试验装置外壳,各气室由盆式绝缘子隔离,且各气室均有独立充放气阀门和气压表或密度计;\n3号气室为主试验单元,可进行SF6气体间隙绝缘特性试验、绝缘子闪络特性试验和金属导电微粒试验;\n支柱绝缘子上设置有屏蔽均压罩,可屏蔽高压导杆电极端部的电场;\n高压导杆电极可通过电极过渡连接件进行更换;\n3号气室端部设有可拆卸法兰结构;\n多个石英玻璃观察窗口,用于观察放电过程;\n装置支撑座和辅助支撑架支撑试验装置本体。
          description: Technical methods
        technical_problem:
          type: string
          example: 现有SF6气体绝缘试验装置体积过大,气体消耗量大,充放气及净化工作量大;单一结构布局限制了试验类型,无法满足多样化试验需求;无法同时进行SF6气体间隙绝缘试验、绝缘子闪络特性试验及金属导电微粒试验;电极更换不便,影响试验效率。
          description: Technical problem
        embodiment_outline:
          type: array
          example:
          - text: 为使本申请实施例的目的、技术方案和优点更加清楚,下面将结合本发明实施例中的附图,对本申请实施例中的技术方案进行清楚、完整地描述,显然,所描述的实施例是本申请一部分实施例,而不是全部的实施例。基于本申请中的实施例,本领域普通技术人员在没有作出创造性劳动前提下所获得的所有其他实施例,都属于本发明保护的范围。
            label: common
          - type: 设备
            label: outline
            outline: outline
            claim_text: "\n1.一种用于直流气体绝缘金属封闭输电线路的试验研究装置,其具有大致“L”型的外形,包括竖直方向上布置的高压引线端、高压均压环和硅橡胶复合绝缘子高压套管;以及在水平方向上,同轴分布的位于中间的高压导杆电极和外围的试验装置外壳;1号气室、2号气室和3号气室共同组成横向的试验装置外壳,所述三个气室由1号盆式绝缘子和2号盆式绝缘子隔离成为独立的气室,所述三个气室还分别具有相应的独立充放气阀门:1号充放气阀门、2号充放气阀门和3号充放气阀门;所述每个充放气阀门上均设置有气压表或密度计;以及所述1号气室的气压保持恒定,不用于试验,所述3号气室为试验单元段,通过布置不同形式的棒板电极、同轴圆柱电极、不同规格的2号盆式绝缘子和支柱绝缘子以及金属导电微粒,在所述3号气室中进行SF6气体间隙绝缘特性试验、绝缘子闪络特性试验和金属导电微粒试验。\n\n  2.依据权利要求1所述的用于直流气体绝缘金属封闭输电线路的试验研究装置,其特征在于\n所述3号气室的3号充放气阀门上设置有带温度补偿的气体密度计。\n\n  3.依据权利要求2所述的用于直流气体绝缘金属封闭输电线路的试验研究装置,其特征在于\n所述支柱绝缘子上设置有屏蔽均压罩,屏蔽高压导杆电极端部的电场。\n\n  4.依据权利要求3所述的用于直流气体绝缘金属封闭输电线路的试验研究装置,其特征在于\n所述3号气室安装不同规格尺寸的同轴外壳电极以配合高压导杆电极组成的电极对,所述高压导杆电极通过2号盆式绝缘子右端的电极过渡连接件进行更换,从而通过改变所述高压导杆电极及其配套电极的尺寸和粗糙度,进行不同形状和不同粗糙度的气体间隙绝缘特性试验。\n\n  5.依据权利要求4所述的用于直流气体绝缘金属封闭输电线路的试验研究装置,其特征在于\n所述3号气室端部设有可拆卸法兰结构。\n\n  6.依据权利要求5所述的用于直流气体绝缘金属封闭输电线路的试验研究装置,其特征在于\n所述2号气室安装有1个1号石英玻璃观察窗口,所述3号气室上安装有2号石英玻璃观察窗口、3号石英玻璃观察窗口和主试验石英玻璃观察窗口各1个,所述石英玻璃为远紫外材料,对放电过程中发出的波长在200nm~800nm的光谱范围内光,其透过率大于90%。\n\n  7.依据权利要求1-6任一项所述的用于直流气体绝缘金属封闭输电线路的试验研究装置,其特征在于\n还具有不锈钢的装置支撑座和辅助支撑架支撑所述试验装置本体,使本体能够平稳放置和移动。"
            claim_numbers:
            - 1
            - 2
            - 3
            - 4
            - 5
            - 6
            - 7
            embodiment_number: 1
            reference_claim_number: []
          - text: 最后应说明的是:以上所述的仅是本申请的优选实施方式,本申请不限于以上实施例。可以理解,本领域技术人员在不脱离本申请的精神和构思的前提下直接导出或联想到的其他改进和变化,均应认为包含在本申请的保护范围之内。
            label: common
          description: Embodiment outline list
          items:
            $ref: '#/components/schemas/AI37-1InitCnipa_EmbodimentOutlineItem'
      required:
      - task_id
    AI37-2InitResultCnipaRequest:
      type: object
      properties:
        task_id:
          type: string
          example: 80d440b7-80a5-4233-a75f-ab72b0885c88
          description: Task id
      required:
      - task_id
    AI37-4GenerateReportCnipa_ClaimFeature:
      type: object
      properties:
        concepts:
          type: array
          example:
          - 气室
          - 试验装置
          - 外壳
          description: Concept words list
        feature:
          type: string
          example: 三个独立气室共同组成横向的试验装置外壳
          description: Technical feature description
        feature_deleted:
          type: integer
          format: int32
          example: 0
          description: Feature deleted flag
    AI37-3ExtractFeatureCnipaRequest:
      type: object
      properties:
        category:
          type: string
          example: 设备
          description: Technology category
        task_id:
          type: string
          example: 123e4567-e89b-12d3-a456-426614174000
          description: Task ID
      required:
      - category
      - task_id
    AI37-1InitCnipa_EmbodimentOutlineItem:
      type: object
      properties:
        text:
          type: string
          example: 本实施例提供一种用于直流气体绝缘金属封闭输电线路的试验研究装置...
          description: Text content
        type:
          type: string
          example: 设备
          description: Type (Composition of matter,Machine, Process, Manufacture)
        label:
          type: string
          example: outline
          description: Label
        claim_text:
          type: string
          example: 一种用于直流气体绝缘金属封闭输电线路的试验研究装置
          description: Claim text
        claim_numbers:
          type: array
          example:
          - 1
          - 2
          - 3
          description: Claim numbers list
        embodiment_number:
          type: integer
          format: int32
          example: 1
          description: Embodiment number
        reference_embodiment_number:
          type: integer
          format: int32
          example: 1
          description: Reference embodiment number
    AI37-4GenerateReportCnipaRequest:
      type: object
      properties:
        benefit:
          type: string
          example: 结构紧凑,操作便捷,满足直流GIL绝缘试验的多种需求
          description: Technical benefits
        category:
          type: string
          example: 设备
          description: Technology category(Composition of matter,Machine, Process, Manufacture)
        classification:
          type: array
          example:
          - G01R31/12
          - H02G15/08
          description: Classification list
        embodiments:
          type: array
          example:
          - text: 为使本申请实施例的目的、技术方案和优点更加清楚,下面将结合本发明实施例中的附图,对本申请实施例中的技术方案进行清楚、完整地描述,显然,所描述的实施例是本申请一部分实施例,而不是全部的实施例。基于本申请中的实施例,本领域普通技术人员在没有作出创造性劳动前提下所获得的所有其他实施例,都属于本发明保护的范围。
            label: common
          - text: "\n1.一种用于直流气体绝缘金属封闭输电线路的试验研究装置,其具有大致“L”型的外形,包括竖直方向上布置的高压引线端、高压均压环和硅橡胶复合绝缘子高压套管;以及在水平方向上,同轴分布的位于中间的高压导杆电极和外围的试验装置外壳;1号气室、2号气室和3号气室共同组成横向的试验装置外壳,所述三个气室由1号盆式绝缘子和2号盆式绝缘子隔离成为独立的气室,所述三个气室还分别具有相应的独立充放气阀门:1号充放气阀门、2号充放气阀门和3号充放气阀门;所述每个充放气阀门上均设置有气压表或密度计;以及所述1号气室的气压保持恒定,不用于试验,所述3号气室为试验单元段,通过布置不同形式的棒板电极、同轴圆柱电极、不同规格的2号盆式绝缘子和支柱绝缘子以及金属导电微粒,在所述3号气室中进行SF6气体间隙绝缘特性试验、绝缘子闪络特性试验和金属导电微粒试验。\n\n  2.依据权利要求1所述的用于直流气体绝缘金属封闭输电线路的试验研究装置,其特征在于\n所述3号气室的3号充放气阀门上设置有带温度补偿的气体密度计。\n\n  3.依据权利要求2所述的用于直流气体绝缘金属封闭输电线路的试验研究装置,其特征在于\n所述支柱绝缘子上设置有屏蔽均压罩,屏蔽高压导杆电极端部的电场。\n\n  4.依据权利要求3所述的用于直流气

# --- truncated at 32 KB (73 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/patsnap/refs/heads/main/openapi/patsnap-specification-drafting-api-openapi.yml