Patsnap Tech Solution Exploration API

Tech Solution Exploration APIs.

OpenAPI Specification

patsnap-tech-solution-exploration-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Patsnap Open Platform AI Translation Tech Solution Exploration 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: Tech Solution Exploration
  description: Tech Solution Exploration APIs.
paths:
  /ai/find-solution/step1/v3:
    post:
      operationId: ai33-1Step1V3
      summary: AI33-1 Find-solution - Create Task
      description: Create a find-solution task and get recommendation options, used as the first step in multi-step technical solution generation process
      tags:
      - Tech Solution Exploration
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Successful ai33-1 find-solution - create task response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AI33-1Step1V3Response'
        '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/find-solution/step1/v3
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AI33-1Step1V3Request'
  /ai/find-solution/step2/v3:
    post:
      operationId: ai33-2Step2V3
      summary: AI33-2 Find-solution - Get Recommendation
      description: Get recommendation options based on the task_id returned from step 1
      tags:
      - Tech Solution Exploration
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Successful ai33-2 find-solution - get recommendation response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AI33-2Step2V3Response'
        '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/find-solution/step2/v3
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AI33-2Step2V3Request'
  /ai/find-solution/step4/v3:
    post:
      operationId: ai33-5Step4V3
      summary: AI33-5 Find-solution - Select Direction
      description: Submit user-selected direction options and start the final solution generation process
      tags:
      - Tech Solution Exploration
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Successful ai33-5 find-solution - select direction response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AI33-5Step4V3Response'
        '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/find-solution/step4/v3
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AI33-5Step4V3Request'
  /ai/find-solution/step3-query/v3:
    post:
      operationId: ai33-4Step3QueryV3
      summary: AI33-4 Find-solution - Get Direction
      description: Get the direction option results for technical solutions
      tags:
      - Tech Solution Exploration
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Successful ai33-4 find-solution - get direction response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AI33-4Step3QueryV3Response'
        '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/find-solution/step3-query/v3
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AI33-4Step3QueryV3Request'
  /ai/find-solution/step3-submit/v3:
    post:
      operationId: ai33-3Step3SubmitV3
      summary: AI33-3 Find-solution - Select Recommendation
      description: Submit user-selected recommendation options and start the direction generation process
      tags:
      - Tech Solution Exploration
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Successful ai33-3 find-solution - select recommendation response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AI33-3Step3SubmitV3Response'
        '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/find-solution/step3-submit/v3
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AI33-3Step3SubmitV3Request'
  /ai/find-solution/step5/v3:
    post:
      operationId: ai33-6Step5V3
      summary: AI33-6 Find-solution - Get Final Solution and Details
      description: Get the final results of technical solution exploration, including complete solution data
      tags:
      - Tech Solution Exploration
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Successful ai33-6 find-solution - get final solution and details response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AI33-6Step5V3Response'
        '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/find-solution/step5/v3
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AI33-6Step5V3Request'
components:
  schemas:
    AI33-2Step2V3Request:
      type: object
      properties:
        task_id:
          type: string
          example: 80d440b7-80a5-4233-a75f-ab72b0885c88
          description: Task id
      required:
      - task_id
    AI33-2Step2V3_FindSolutionRecommendResponseV3:
      type: object
      properties:
        status:
          type: string
          example: RUNNING
          description: Return status value(SUCCEED,RUNNING,FAILED)
        recommend:
          type: array
          example:
          - 成本增幅≤15%
          - 安全性能不降低
          - 产线兼容改造
          description: Recommended item
    AI33-6Step5V3_FindSolutionResultResponseV3:
      type: object
      properties:
        status:
          type: string
          example: SUCCEED
          description: Return status value(SUCCEED,RUNNING,FAILED)
        solution:
          $ref: '#/components/schemas/AI33-6Step5V3_EurekaMindData'
    AI33-6Step5V3_OrgInfo:
      type: object
      properties:
        id:
          type: string
          example: c2622ff840571e887a776e07b192ee06
          description: ID of the organization (same as entity_id)
        logo:
          type: string
          example: https://filecdn.shuidi.cn/img/upload/images_logo/29/ea/39/29ea39ecfa47783e58f4e2bf86451aef.png/0x0.png
          description: Logo image URL of the organization
        name:
          type: string
          example: Wuhan University of Technology
          description: Primary name of the organization
        site:
          type: string
          example: www.whut.edu.cn
          description: Site domain of the organization
        name_cn:
          type: string
          example: 武汉理工大学
          description: Chinese name of the organization
        name_en:
          type: string
          example: Wuhan University of Technology
          description: English name of the organization
        website:
          type: string
          example: http://www.whut.edu.cn
          description: Official website URL of the organization
        state_id:
          type: string
          example: 80cd8682-4344-3436-88b9-cfba03d34b78
          description: Unique identifier of the state/province where the organization is located
        entity_id:
          type: string
          example: c2622ff840571e887a776e07b192ee06
          description: Unique entity identifier of the organization
        country_id:
          type: string
          example: 5a365096-b2a6-31cb-acdf-1de1f5ab3abe
          description: Unique identifier of the country where the organization is located
        state_name:
          type: string
          example: Hubei Sheng
          description: Name of the state/province where the organization is located
        description:
          type: string
          example: Wuhan University of Technology (WUT or WHUT) is one of the leading Chinese universities...
          description: Detailed description of the organization
        entity_type:
          type: string
          example: Education
          description: Entity type of the organization
        country_name:
          type: string
          example: China
          description: Name of the country where the organization is located
        display_name:
          type: string
          example: Wuhan University of Technology
          description: Display name of the organization
        founded_date:
          type: integer
          format: int64
          example: 19480101
          description: Founded date of the organization (timestamp format)
        headquarters:
          $ref: '#/components/schemas/AI33-6Step5V3_Address'
        employee_number:
          type: integer
          format: int32
          example: 1000
          description: Number of employees in the organization
        normalized_name:
          type: string
          example: WUHAN UNIV OF TECH
          description: Normalized name of the organization
        original_address:
          $ref: '#/components/schemas/AI33-6Step5V3_Address'
        employee_number_interval:
          type: string
          example: 1000-5000
          description: Employee number interval of the organization
        normalized_entity_type_en:
          type: string
          example: Education
          description: Normalized entity type (English)
    AI33-6Step5V3Response:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/AI33-6Step5V3_FindSolutionResultResponseV3'
        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
    AI33-4Step3QueryV3_FindSolutionDirectionResponseV3:
      type: object
      properties:
        status:
          type: string
          example: SUCCEED
          description: Return status value(SUCCEED,RUNNING,FAILED)
        directions:
          type: array
          example:
          - reason: 通过高能量密度电极材料升级与电解液优化提升电池能量密度
            ticked: true
            approaches:
            - 采用单晶高镍NCM811/NCA正极材料配合硅碳复合负极(5-10%硅含量),同时使用高电压添加剂改性电解液,在电池体积不变情况下提升能量密度。
            source_type: model
            verification: 实现260Wh/kg能量密度目标,同时控制成本增幅在15%以内,保持电池安全性能。
          - reason: 通过结构优化与轻量化设计减少非活性材料质量占比
            ticked: true
            approaches:
            - 优化锂电池极片结构设计,采用双面不等厚度涂布工艺和梯度密实度电极,配合超薄铜箔(6μm)和铝箔(12μm)集流体,减少非活性材料占比。
            source_type: model
            verification: 在保持电池体积不变的情况下,提高活性材料占比,实现能量密度提升至260Wh/kg,且与现有产线兼容。
          description: Technical direction
          items:
            $ref: '#/components/schemas/AI33-4Step3QueryV3_Direction'
    AI33-4Step3QueryV3Response:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/AI33-4Step3QueryV3_FindSolutionDirectionResponseV3'
        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
    AI33-5Step4V3Response:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/AI33-5Step4V3_AsyncTaskIdResponse'
        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
    AI33-3Step3SubmitV3_AsyncTaskIdResponse:
      type: object
      properties:
        task_id:
          type: string
          example: 80d440b7-80a5-4233-a75f-ab72b0885c88
          description: Task id
    AI33-6Step5V3_EurekaMindData:
      type: object
      properties:
        cells:
          type: array
          example:
            type: MIND
            cells:
            - id: e5c1c262-5d1d-45a4-9f6a-d4b90514bf25
              attrs:
                line:
                  style:
                    animation: ''
              shape: default-edge
              source:
                cell: 0f26fa4e9305ef86db199ba4d116f233
              target:
                cell: 4e2660fb9e04166b28b835c4d46c5bd1
              z_index: 0
            - id: 535c6080-37a8-4252-ba34-738d2d5d1716
              attrs:
                line:
                  style:
                    animation: ''
              shape: default-edge
              source:
                cell: 4e2660fb9e04166b28b835c4d46c5bd1
              target:
                cell: 71121cc602c29ef51f1852fa1ed19492
              z_index: 0
            - id: 864b87cd-11db-46d4-8c17-4fd56218ca34
              attrs:
                line:
                  style:
                    animation: ''
              shape: default-edge
              source:
                cell: 4e2660fb9e04166b28b835c4d46c5bd1
              target:
                cell: f13c9db921f402cc7efeb921397bd7c3
              z_index: 0
            - id: 58c6faf6-a00b-4afe-b28c-bac292d36b97
              attrs:
                line:
                  style:
                    animation: ''
              shape: default-edge
              source:
                cell: 0f26fa4e9305ef86db199ba4d116f233
              target:
                cell: b72668368698fc1e332c74f62e31caa5
              z_index: 0
            - id: 7062f430-12f2-465c-9375-63bc7ef696a3
              attrs:
                line:
                  style:
                    animation: ''
              shape: default-edge
              source:
                cell: b72668368698fc1e332c74f62e31caa5
              target:
                cell: a8fdf0d8af4c634b71b19afcce4bd42a
              z_index: 0
            - id: e962c969-2f74-41a2-872b-3f6ed3bfd90d
              attrs:
                line:
                  style:
                    animation: ''
              shape: default-edge
              source:
                cell: 0f26fa4e9305ef86db199ba4d116f233
              target:
                cell: 3e7c78a117853517f893b41e167e1c9d
              z_index: 0
            - id: 60b347e5-8cd1-4325-bcf4-acdcd6182046
              attrs:
                line:
                  style:
                    animation: ''
              shape: default-edge
              source:
                cell: 3e7c78a117853517f893b41e167e1c9d
              target:
                cell: c0b732846225a57790f5b6f533eae3b1
              z_index: 0
            - id: e2186f9b-37e4-4828-8493-13a44a4c48b6
              attrs:
                line:
                  style:
                    animation: ''
              shape: default-edge
              source:
                cell: 3e7c78a117853517f893b41e167e1c9d
              target:
                cell: 0277ee10684875e3bdceefe937fcad7d
              z_index: 0
            - id: 88382890-deed-4420-bbd8-c59bb9b1a9c5
              attrs:
                line:
                  style:
                    animation: ''
              shape: default-edge
              source:
                cell: b72668368698fc1e332c74f62e31caa5
              target:
                cell: 601ad6e604f36b1d3c3690ef512d21f1
              z_index: 0
            - id: 6123bb6d-18c1-4bd5-9e02-f87bdb84a4ad
              attrs:
                line:
                  style:
                    animation: ''
              shape: default-edge
              source:
                cell: 4e2660fb9e04166b28b835c4d46c5bd1
              target:
                cell: 531f9a6c0c952368f1a530bac64c005b
              z_index: 0
            - id: 36ca5f7e-67d7-4726-90aa-c93e64623061
              attrs:
                line:
                  style:
                    animation: ''
              shape: default-edge
              source:
                cell: b72668368698fc1e332c74f62e31caa5
              target:
                cell: 9850956f70784395ed2a9b9450c5421d
              z_index: 0
            - id: 44b4d559-6d46-4520-b4a0-7c5722b57e68
              attrs:
                line:
                  style:
                    animation: ''
              shape: default-edge
              source:
                cell: 3e7c78a117853517f893b41e167e1c9d
              target:
                cell: 7a465947259619d0314c588fc93b87c1
              z_index: 0
            - id: 0f26fa4e9305ef86db199ba4d116f233
              data:
                initd: true
                order: '1'
                status: success
                sys_content: 如何在腹腔镜中安装模拟内脏力反馈的装置,使外科医生能够实时感知器械与内脏组织接触的力度(0.1-5N范围),同时满足微创手术的空间限制(5-12mm直径)、湿润环境适应性、低延迟要求(<10ms)和操作自然性?需要解决传感器微型化与高精度间的矛盾,以及在有限空间内实现力信息的采集、传输和反馈的技术挑战。
                tech_version: '2'
              size:
                width: 300
                height: 64
              view: vue-shape-view
              shape: idea-node
              z_index: 1000
              position:
                x: 0
                y: 132
            title: 如何在腹腔镜中安装模拟内脏力反馈的装置,使外科医生能够实时感知器械与内脏组织接触的力度(0.1-5N范围),同时满足微创手术的空间限制(5-12mm直径)、湿润环境适应性、低延迟要求(<10ms)和操作自然性?需要解决传感器微型化与高精度间的矛盾,以及在有限空间内实现力信息的采集、传输和反馈的技术挑战。
            tech_version: '2'
          description: Mind map cell list, containing all nodes and connection line information
          items:
            $ref: '#/components/schemas/AI33-6Step5V3_EurekaMindCell'
        title:
          type: string
          example: 如何在腹腔镜中安装模拟内脏力反馈的装置
          description: Mind map title, describing the problem or topic
      required:
      - cells
      - title
    AI33-6Step5V3_Address:
      type: object
      properties:
        city:
          type: string
          example: 武汉市
          description: City
        state:
          type: string
          example: 湖北省
          description: State/Province
        country:
          type: string
          example: 中国
          description: Country
        district:
          type: string
          example: 洪山区
          description: District/County
        location:
          type: string
          example: 湖北省武汉市洪山区珞狮路122号
          description: Detailed address location
    AI33-5Step4V3_Direction:
      type: object
      properties:
        approaches:
          type: array
          example:
          - 采用单晶高镍NCM811/NCA正极材料配合硅碳复合负极(5-10%硅含量),同时使用高电压添加剂改性电解液
          description: List of technical approaches or implementation paths
        reason:
          type: string
          example: 通过高能量密度电极材料升级与电解液优化提升电池能量密度
          description: Reason or rationale for the technical direction
        source_type:
          type: string
          example: model
          description: Data source type(model/customize)
        ticked:
          type: boolean
          example: true
          description: Whether it is selected or ticked
        verification:
          type: string
          example: 实现260Wh/kg能量密度目标,同时控制成本增幅在15%以内,保持电池安全性能
          description: Verification description of the technical direction
    AI33-3Step3SubmitV3Request:
      type: object
      properties:
        lang:
          type: string
          example: cn
          description: text language, support cn and en
        recommend:
          type: array
          example:
          - 成本增幅≤15%
          - 安全性能不降低
          - 产线兼容改造
          description: Recommended item
        task_id:
          type: string
          example: d12fcd63d27028b88a73168d5bca44d5
          description: task_id of find solution
      required:
      - lang
      - task_id
    AI33-6Step5V3Request:
      type: object
      properties:
        task_id:
          type: string
          example: 80d440b7-80a5-4233-a75f-ab72b0885c88
          description: Task id
      required:
      - task_id
    AI33-6Step5V3_EurekaMindPosition:
      type: object
      properties:
        x:
          type: integer
          format: int32
          example: 370
          description: X coordinate of the node on the canvas
        y:
          type: integer
          format: int32
          example: 132
          description: Y coordinate of the node on the canvas
    AI33-1Step1V3_AsyncTaskIdResponse:
      type: object
      properties:
        task_id:
          type: string
          example: 80d440b7-80a5-4233-a75f-ab72b0885c88
          description: Task id
    AI33-6Step5V3_EurekaMindCellReference:
      type: object
      properties:
        cell:
          type: string
          example: 0f26fa4e9305ef86db199ba4d116f233
          description: Unique identifier of the referenced node
      required:
      - cell
    AI33-5Step4V3Request:
      type: object
      properties:
        directions:
          type: array
          example:
          - reason: 通过高能量密度电极材料升级与电解液优化提升电池能量密度
            ticked: true
            approaches:
            - 采用单晶高镍NCM811/NCA正极材料配合硅碳复合负极(5-10%硅含量),同时使用高电压添加剂改性电解液,在电池体积不变情况下提升能量密度。
            source_type: model
            verification: 实现260Wh/kg能量密度目标,同时控制成本增幅在15%以内,保持电池安全性能。
          - reason: 通过结构优化与轻量化设计减少非活性材料质量占比
            ticked: true
            approaches:
            - 优化锂电池极片结构设计,采用双面不等厚度涂布工艺和梯度密实度电极,配合超薄铜箔(6μm)和铝箔(12μm)集流体,减少非活性材料占比。
            source_type: model
            verification: 在保持电池体积不变的情况下,提高活性材料占比,实现能量密度提升至260Wh/kg,且与现有产线兼容。
          description: Technical direction
          items:
            $ref: '#/components/schemas/AI33-5Step4V3_Direction'
        lang:
          type: string
          example: cn
          description: text language, support cn and en
        task_id:
          type: string
          example: d12fcd63d27028b88a73168d5bca44d5
          description: task_id of find solution
      required:
      - lang
      - task_id
    AI33-5Step4V3_AsyncTaskIdResponse:
      type: object
      properties:
        task_id:
          type: string
          example: 80d440b7-80a5-4233-a75f-ab72b0885c88
          description: Task id
    AI33-3Step3SubmitV3Response:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/AI33-3Step3SubmitV3_AsyncTaskIdResponse'
        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
    AI33-1Step1V3Request:
      type: object
      properties:
        lang:
          type: string
          example: cn
          description: text language, support cn and en
        solution_issues:
          type: string
          example: 如何提高锂电池能量密度到260瓦时/千克(Wh/kg)且体积没有变大
          description: Technical issues requiring the creation of find-solution,length limit 500 characters
      required:
      - lang
      - solution_issues
    AI33-6Step5V3_EurekaMindSize:
      type: object
      properties:
        width:
          type: integer
          format: int32
          example: 300
          description: Width of the node (pixels)
        height:
          type: integer
          format: int32
          example: 64
          description: Height of the node (pixels)
    AI33-6Step5V3_EurekaMindCell:
      type: object
      properties:
        id:
          type: string
          example: 0f26fa4e9305ef86db199ba4d116f233
          description: Unique identifier of the node
        data:
          $ref: '#/components/schemas/AI33-6Step5V3_EurekaMindCellData'
        size:
          $ref: '#/components/schemas/AI33-6Step5V3_EurekaMindSize'
        view:
          type: string
          example: vue-shape-view
          description: View type, defining how the node is rendered
        shape:
          type: string
          example: idea-node
          description: Node shape type, such as idea-node, solution-node, default-edge, etc.
        source:
          $ref: '#/components/schemas/AI33-6Step5V3_EurekaMindCellReference'
        target:
          $ref: '#/components/schemas/AI33-6Step5V3_EurekaMindCellReference'
        z_index:
          type: integer
          format: int32
          example: 1000
          description: Layer index of the node on the Z-axis
        position:
          $ref: '#/components/schemas/AI33-6Step5V3_EurekaMindPosition'
    AI33-6Step5V3_EurekaMindCellData:
      type: object
      properties:
        initd:
          type: boolean
          example: true
          description: Whether it has been initialized
        order:
          type: string
          example: 1
          description: Node sorting number, used to identify the level of the node in the mind map
        status:
          type: string
          example: success
          description: Node status, such as success indicating successful generation
        node_id:
          type: string
          example: 4e2660fb9e04166b28b835c4d46c5bd1
          description: Unique identifier of the node
        route_id:
          type: string
          example: 4e2660fb9e04166b28b835c4d46c5bd1
          description: Route identifier, associated with the parent node
        reference:
          type: array
          example:
          - PN: CN116026514A
            APD: 29 Mar 2023
            PBD: ''
            TITLE: Surgical clamp-oriented six-dimensional force sensor and nonlinear decoupling and fault-tolerant method
            CONTENT: By combining the elastic deformation module and fiber grating in the laparoscopic surgical clamp, and using the extreme learning machine model and the seagull algorithm, high-precision six-dimensional force and torque detection is achieved, which solves the problem of poor biocompatibility and vulnerability of sensors in the existing technology. The problem of electromagnetic interference improves the success rate and safety of surgery.
            ORG_INFO:
            - id: c2622ff840571e887a776e07b192ee06
              logo: https://filecdn.shuidi.cn/img/upload/images_logo/29/ea/39/29ea39ecfa47783e58f4e2bf86451aef.png/0x0.png
              name: Wuhan University of Technology
              site: www.whut.edu.cn
              name_cn: 武汉理工大学
              name_en: Wuhan University of Technology
              website: http://www.whut.edu.cn
              state_id: 80cd8682-4344-3436-88b9-cfba03d34b78
              entity_id: c2622ff840571e887a776e07b192ee06
              country_id: 5a365096-b2a6-31cb-acdf-1de1f5ab3abe
              state_name: Hubei Sheng
              description: 'Wuhan University of Technology (WUT or WHUT), located in Wuchang District and Luonan Subdistrict, Hongshan District in Wuhan, Hubei, China, was merged on May 27, 2000, from three universities: Wuhan University of Technology (established in 1948), Wuhan Transportation University (established in 1946) and Wuhan Automotive Polytechnic University (established in 1958). WUT is one of the leading Chinese universities accredited by the Ministry of Education and one of the universities constructed in priority by the "State Project 211" for Chinese higher education institutions. It is also a Chinese Ministry of Education Double First Class Discipline University, with Double First Class status in certain disciplines.'
              entity_type: Education
              country_name: China
              display_name: Wuhan University of Technology
              founded_date: 19480101
              headquarters:
                state: 湖北省
                country: 中国
                location: 湖北省武汉市洪山区珞狮路122号
              normalized_name: WUHAN UNIV OF TECH
              original_address:
                state: 湖北省
                country: 中国
                location: 湖北省武汉市洪山区珞狮路122号
              normalized_entity_type_en: Education
            SOLUTION_ID: 83d60b08-83e9-4d17-9b57-955290e53b1e
            SOLUTION_TYPE: PATENT
          - PN: ''
            APD: ''
            PBD: '2019-08-12'
            TITLE: Ultraminiature and Flexible Sensor Based on Interior Corner Flow for Direct Pressure Sensing in Biofluids
            CONTENT: <jats:title>Abstract</jats:title><jats:p>Conventional pressure sensing devices are well developed for either indirect evaluation or internal measuring 

# --- truncated at 32 KB (41 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/patsnap/refs/heads/main/openapi/patsnap-tech-solution-exploration-api-openapi.yml