Patsnap Drug Visual Analysis API

Drug Visual Analysis APIs.

OpenAPI Specification

patsnap-drug-visual-analysis-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Patsnap Open Platform AI Translation Drug Visual Analysis  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: 'Drug Visual Analysis '
  description: Drug Visual Analysis  APIs.
paths:
  /synapse/bull-eyes-plot:
    post:
      operationId: b057SynapseBullEyesPlot
      summary: B057 Bull eyes plot
      description: Obtain bull eyes plot
      tags:
      - 'Drug Visual Analysis '
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Successful b057 bull eyes plot response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/B057SynapseBullEyesPlotResponse'
        '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/synapse/bull-eyes-plot
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/B057SynapseBullEyesPlotRequest'
  /synapse/alert/drug_search/create:
    post:
      operationId: b064-1DrugSearchCreate
      summary: B064-1 Create drug monitoring
      description: Drug monitoring
      tags:
      - 'Drug Visual Analysis '
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Successful b064-1 create drug monitoring response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/B064-1DrugSearchCreateResponse'
        '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/synapse/alert/drug_search/create
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/B064-1DrugSearchCreateRequest'
  /synapse/alert/drug_search/edit:
    post:
      operationId: b064-2DrugSearchEdit
      summary: B064-2 Edit drug monitoring
      description: Edit drug monitoring
      tags:
      - 'Drug Visual Analysis '
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Successful b064-2 edit drug monitoring response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/B064-2DrugSearchEditResponse'
        '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/synapse/alert/drug_search/edit
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/B064-2DrugSearchEditRequest'
  /synapse/drug/milestone:
    post:
      operationId: b074DrugMilestone
      summary: B074 Drug milestone
      description: Obtain drug milestone, including milestone, event, disease, country, organization, etc.
      tags:
      - 'Drug Visual Analysis '
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Successful b074 drug milestone response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/B074DrugMilestoneResponse'
        '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/synapse/drug/milestone
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/B074DrugMilestoneRequest'
  /synapse/alert/drug_search/query:
    post:
      operationId: b064-3DrugSearchQuery
      summary: B064-3 Query drug monitoring
      description: Query drug monitoring
      tags:
      - 'Drug Visual Analysis '
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Successful b064-3 query drug monitoring response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/B064-3DrugSearchQueryResponse'
        '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/synapse/alert/drug_search/query
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/B064-3DrugSearchQueryRequest'
components:
  schemas:
    B064-3DrugSearchQuery_SpecialReviewEntity:
      type: object
      properties:
        dict_id:
          type: string
          example: fast_track
          description: Dictionary ID
        display_name_cn:
          type: string
          example: 快速通道
          description: Chinese display name
        display_name_en:
          type: string
          example: Fast Track
          description: English display name
    B064-3DrugSearchQuery_JournalEntity:
      type: object
      properties:
        dict_id:
          type: string
          example: nature_medicine
          description: Dictionary ID
        display_name_cn:
          type: string
          example: 自然医学
          description: Chinese display name
        display_name_en:
          type: string
          example: Nature Medicine
          description: English display name
    B064-3DrugSearchQuery_AlertDataResponse:
      type: object
      properties:
        status:
          type: integer
          format: int32
          example: 0
          description: 'Status code: 0 (Normal), 2 (The data remains unchanged)'
        alert_time:
          type: string
          example: 20250101
          description: Alert Time
        alert_event_data:
          $ref: '#/components/schemas/B064-3DrugSearchQuery_AlertEventResp'
        total_update_event_count:
          type: integer
          format: int32
          example: 5
          description: Total update event count
    B064-2DrugSearchEdit_DrugSearchRequestDto:
      type: object
      properties:
        offset:
          type: integer
          format: int64
          example: 0
          description: Offset, default 0
        limit:
          type: integer
          format: int64
          example: 10
          description: Limit, default 10. offset + limit <= 10000, limit up to 1,000.
        drug:
          $ref: '#/components/schemas/B064-2DrugSearchEdit_DrugSearchDrugConditionValue'
        target:
          $ref: '#/components/schemas/B064-2DrugSearchEdit_DrugSearchTargetConditionValue'
        disease:
          $ref: '#/components/schemas/B064-2DrugSearchEdit_DrugSearchDiseaseConditionValue'
        organization:
          $ref: '#/components/schemas/B064-2DrugSearchEdit_DrugSearchOrganizationConditionValue'
        mechanism_action:
          $ref: '#/components/schemas/B064-2DrugSearchEdit_DrugSearchMechanismActionConditionValue'
        drug_type:
          $ref: '#/components/schemas/B064-2DrugSearchEdit_DrugSearchDrugTypeConditionValue'
        global_highest_dev_status:
          type: array
          example:
          - Approved
          description: 'Drug Highest Phase. The value is an enum with the following values: Discovery, Preclinical, IND, IND_Approval, Early_Phase_1, Phase_1, Phase_1_2, Phase_2, Phase_2_3, Phase_3, NDA_BLA, Approved, Clinical, Pending, Discontinued, Withdraw, Suspended, Unknown.'
        exist_deal:
          type: boolean
          example: true
          description: Whether Drug Deal Exist
        dev_status:
          type: array
          example:
          - Approved
          description: 'Phase(By Indication). The value is an enum with the following values: Discovery, Preclinical, IND, IND_Approval, Early_Phase_1, Phase_1, Phase_1_2, Phase_2, Phase_2_3, Phase_3, NDA_BLA, Approved, Clinical, Pending, Discontinued, Withdraw, Suspended, Unknown.'
        country:
          type: array
          example:
          - US
          - EU
          description: 'Phase(By Indication). The value is an enum with the following values: US, EU, JP, CN, Other'
        organization_type:
          type: array
          example:
          - Company
          description: 'Organization Type. The value is an enum with the following values: Company, University_Institution, Other'
        employee_number:
          type: array
          example:
          - GREATER_THAN_500
          description: 'Employee Number. The value is an enum with the following values: LESS_THAN_10, BETWEEN_10_AND_100, BETWEEN_100_AND_500, GREATER_THAN_500'
        start_up:
          type: boolean
          example: false
          description: Whether Start-Up Organization
        sort:
          type: array
          example:
          - sort_field: DRUG_TYPE_SORT
            sort_order: desc
          - sort_field: GLOBAL_HIGHEST_DEV_STATUS_RANK
            sort_order: desc
          - sort_field: FIRST_APPROVED_DATE
            sort_order: desc
          description: 'Field order, field can support: DRUG_TYPE_SORT, GLOBAL_HIGHEST_DEV_STATUS_RANK, FIRST_APPROVED_DATE; order can support:desc, asc (default desc)'
          items:
            $ref: '#/components/schemas/B064-2DrugSearchEdit_DrugSearchSortDto'
    B074DrugMilestoneRequest:
      type: object
      properties:
        offset:
          type: integer
          format: int64
          example: 0
          description: Offset, default 0
        limit:
          type: integer
          format: int64
          example: 10
          description: Limit, default 10.limit up to 100.
        drug_id:
          type: string
          example: 69fdd1486c554a3d86a8c38c60bf6e3b
          description: Drug ID
        sort_order:
          type: string
          example: desc
          description: Sort by event time, sort order, support:desc,asc
        milestone:
          type: array
          example:
          - 773127276f7a4b229f3932d9487c57a9
          - 273b0df9aad347fd8d36ebd8ae0c1cbd
          - 8b32a9b6c03f4bafb8ee22dfcd589943
          description: Milestone ID
        event_id:
          type: array
          example:
          - 7b79728539354f189772a4eab9cc9fff
          - f835774c48404593b64ef05369eb8eba
          - 78c45f1d523646808032edcff807ca59
          description: 事件ID
        disease_id:
          type: array
          example:
          - 7af6661c23e8485d9f1dad6a94914fe3
          description: Disease ID
        country_id:
          type: array
          example:
          - 0dc5d896-7408-3c87-84c0-22e3d9b784be
          description: Country/Region
        organization_id:
          type: array
          example:
          - 16e33268b7ffba870d1f7a78de820ed5
          description: Organization ID
        event_start_time:
          type: integer
          format: int64
          example: 20150101
          description: Event start time
        event_end_time:
          type: integer
          format: int64
          example: 20251231
          description: Event end time
      required:
      - drug_id
    B057SynapseBullEyesPlot_CommonOrganization:
      type: object
      properties:
        display_name:
          type: array
          example:
          - lang: EN
            name: Roche Holding AG
          - lang: CN
            name: 罗氏
          description: Organization Name, Referencing "CommonName"
          items:
            $ref: '#/components/schemas/B057SynapseBullEyesPlot_CommonName'
        organization_id:
          type: string
          example: 87bfaf037f8e60c9e25595cd98bb27e4
          description: Organization ID
    B057SynapseBullEyesPlot_CommonDisease:
      type: object
      properties:
        disease_id:
          type: string
          example: 06a9082fe1ec4c97bea31d888b9cfdce
          description: Disease ID
        display_name:
          type: array
          example:
          - lang: EN
            name: Uveitic Macular Edema
          - lang: CN
            name: 葡萄膜炎黄斑水肿
          description: Disease Name, Referencing "CommonName"
          items:
            $ref: '#/components/schemas/B057SynapseBullEyesPlot_CommonName'
    B064-3DrugSearchQuery_NewsAlert:
      type: object
      properties:
        tag:
          type: array
          example:
          - FDA
          - Cancer
          - Approval
          description: Tag list
        url:
          type: string
          example: https://www.fda.gov/news/123456
          description: URL
        title:
          type: string
          example: FDA Approves New Cancer Drug
          description: News title
        news_id:
          type: string
          example: news_123456
          description: News ID
        event_time_cn:
          type: string
          example: 2024年1月15日
          description: Event time Chinese
        event_time_en:
          type: string
          example: January 15, 2024
          description: Event time English
        event_type_cn:
          type: string
          example: 新闻发布
          description: Event type Chinese
        event_type_en:
          type: string
          example: News Published
          description: Event type English
    B074DrugMilestoneResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/B074DrugMilestone_DrugMilestoneResponseDto'
        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
    B064-3DrugSearchQuery_DrugAlert:
      type: object
      properties:
        drug_id:
          type: string
          example: c9f0bcdf2ea7454e902b124a025bf025
          description: Drug ID
        drug_type:
          type: array
          example:
          - 1151dbc710f64a85923dc05d4a5a0ba9
          description: Drug type ID list
        target_id:
          type: array
          example:
          - 3d2eb481e4e6308c91f65fde3b04d000
          description: Target ID list
        drug_id_view:
          $ref: '#/components/schemas/B064-3DrugSearchQuery_DrugEntity'
        drug_type_view:
          type: array
          example:
          - dictId: 1151dbc710f64a85923dc05d4a5a0ba9
            displayNameCn: 小分子药物
            displayNameEn: Small Molecule
          description: Drug type details list
          items:
            $ref: '#/components/schemas/B064-3DrugSearchQuery_DrugTypeEntity'
        target_id_view:
          type: array
          example:
          - targetId: 3d2eb481e4e6308c91f65fde3b04d000
            displayNameCn: KRAS G12D
            displayNameEn: KRAS G12D
          description: Target details list
          items:
            $ref: '#/components/schemas/B064-3DrugSearchQuery_TargetEntity'
        global_highest_dev_status:
          type: string
          example: b2ca28b01c34419db0365bad2f8dd09e
          description: Global highest development status
        active_org_master_entity_id:
          type: array
          example:
          - ca22cc385c771846b24b6df608005a9a
          description: Active organization master entity ID list
        global_highest_dev_status_view:
          $ref: '#/components/schemas/B064-3DrugSearchQuery_DevStatusEntity'
        active_org_master_entity_id_view:
          type: array
          example:
          - entityId: ca22cc385c771846b24b6df608005a9a
            displayNameCn: 华东师范大学
            displayNameEn: East China Normal University
          description: Active organization details list
          items:
            $ref: '#/components/schemas/B064-3DrugSearchQuery_OrganizationEntity'
    B064-2DrugSearchEdit_Frequency:
      type: object
      properties:
        date:
          type: integer
          format: int32
          example: 1
          description: 'Date setting, when type is WEEKLY: 1-7 (Monday to Sunday); when type is MONTHLY: 1-29 (day of the month); when type is DAILY: this field is invalid'
        type:
          type: string
          example: WEEKLY
          description: 'Frequency type, supports: DAILY (Daily), WEEKLY (Weekly), MONTHLY (Monthly)'
      required:
      - type
    B064-2DrugSearchEdit_DrugSearchDrugConditionValue:
      type: object
      properties:
        condition:
          type: string
          example: OR
          description: Logical operators, The value is an enum with the following values:AND,OR. Case-sensitive.
        value:
          type: array
          example:
          - 945fa31ebe9e41ae912e493aa3324576
          description: Value List
    B064-2DrugSearchEdit_Event:
      type: object
      properties:
        name:
          type: string
          example: drug_dev_status
          description: Event name, supports:<p>query_result (Query Result) - Monitor changes in search results</p><p>drug_dev_status (Drug Development Status) - Monitor changes in drug development phases</p><p>special_approval (Special Approval) - Monitor special approval events</p><p>clinical_trial (Clinical Trial) - Monitor clinical trial related events</p><p>drug_deal (Drug Deal) - Monitor drug deal events</p><p>patent (Patent) - Monitor patent related events</p><p>paper (Paper) - Monitor paper publication events</p><p>translational_medicine (Translational Medicine) - Monitor translational medicine events</p><p>news (News) - Monitor news events</p>
        sub_event:
          type: array
          example:
          - DISCOVERY
          - PRECLINICAL
          - PHASE_1
          description: 'Sub-event list, different options for different event types:<p>query_result (Query Result): [QUERY_RESULT (Query Result Change)]</p><p>drug_dev_status (Drug Development Status): [DISCOVERY (Drug Discovery), PRECLINICAL (Preclinical), IND (Investigational New Drug), IND_APPROVAL (IND Approval), EARLY_PHASE_1 (Early Phase 1), PHASE_1 (Phase 1), PHASE_1_2 (Phase 1/2), PHASE_2 (Phase 2), PHASE_2_3 (Phase 2/3), PHASE_3 (Phase 3), NDA_BLA (New Drug Application/Biologics License Application), APPROVED (Approved), DISCONTINUED (Discontinued), WITHDRAWN (Withdrawn), SUSPENDED (Suspended)]</p><p>special_approval (Special Approval): [SPECIAL_APPROVAL (Special Approval Event)]</p><p>clinical_trial (Clinical Trial): [CLINICAL_TRIAL_FIRST_POSTED (Clinical Trial First Posted), CLINICAL_TRIAL_CLINICAL_PROGRESS (Clinical Trial Progress), CLINICAL_TRIAL_RESULT_PUBLISHED (Clinical Trial Result Published)]</p><p>drug_deal (Drug Deal): [ACTIVE (Active), TERMINATED (Terminated), COMPLETED (Completed)]</p><p>patent (Patent): [PATENT_PUBLISHED (Patent Published), PATENT_GRANTED (Patent Granted), PATENT_EXPIRE_WITHIN_FIVE_YEARS (Patent Expire Within 5 Years), PATENT_EXPIRE_WITHIN_THREE_YEARS (Patent Expire Within 3 Years), PATENT_EXTENSION (Patent Extension)]</p><p>paper (Paper): [PAPER (Paper Published)]</p><p>translational_medicine (Translational Medicine): [TRANSLATIONAL_MEDICINE (Translational Medicine Event)]</p><p>news (News): [NEWS (News Event)]</p>'
      required:
      - name
      - sub_event
    B064-1DrugSearchCreate_DrugSearchRequestDto:
      type: object
      properties:
        offset:
          type: integer
          format: int64
          example: 0
          description: Offset, default 0
        limit:
          type: integer
          format: int64
          example: 10
          description: Limit, default 10. offset + limit <= 10000, limit up to 1,000.
        drug:
          $ref: '#/components/schemas/B064-1DrugSearchCreate_DrugSearchDrugConditionValue'
        target:
          $ref: '#/components/schemas/B064-1DrugSearchCreate_DrugSearchTargetConditionValue'
        disease:
          $ref: '#/components/schemas/B064-1DrugSearchCreate_DrugSearchDiseaseConditionValue'
        organization:
          $ref: '#/components/schemas/B064-1DrugSearchCreate_DrugSearchOrganizationConditionValue'
        mechanism_action:
          $ref: '#/components/schemas/B064-1DrugSearchCreate_DrugSearchMechanismActionConditionValue'
        drug_type:
          $ref: '#/components/schemas/B064-1DrugSearchCreate_DrugSearchDrugTypeConditionValue'
        global_highest_dev_status:
          type: array
          example:
          - Approved
          description: 'Drug Highest Phase. The value is an enum with the following values: Discovery, Preclinical, IND, IND_Approval, Early_Phase_1, Phase_1, Phase_1_2, Phase_2, Phase_2_3, Phase_3, NDA_BLA, Approved, Clinical, Pending, Discontinued, Withdraw, Suspended, Unknown.'
        exist_deal:
          type: boolean
          example: true
          description: Whether Drug Deal Exist
        dev_status:
          type: array
          example:
          - Approved
          description: 'Phase(By Indication). The value is an enum with the following values: Discovery, Preclinical, IND, IND_Approval, Early_Phase_1, Phase_1, Phase_1_2, Phase_2, Phase_2_3, Phase_3, NDA_BLA, Approved, Clinical, Pending, Discontinued, Withdraw, Suspended, Unknown.'
        country:
          type: array
          example:
          - US
          - EU
          description: 'Phase(By Indication). The value is an enum with the following values: US, EU, JP, CN, Other'
        organization_type:
          type: array
          example:
          - Company
          description: 'Organization Type. The value is an enum with the following values: Company, University_Institution, Other'
        employee_number:
          type: array
          example:
          - GREATER_THAN_500
          description: 'Employee Number. The value is an enum with the following values: LESS_THAN_10, BETWEEN_10_AND_100, BETWEEN_100_AND_500, GREATER_THAN_500'
        start_up:
          type: boolean
          example: false
          description: Whether Start-Up Organization
        sort:
          type: array
          example:
          - sort_field: DRUG_TYPE_SORT
            sort_order: desc
          - sort_field: GLOBAL_HIGHEST_DEV_STATUS_RANK
            sort_order: desc
          - sort_field: FIRST_APPROVED_DATE
            sort_order: desc
          description: 'Field order, field can support: DRUG_TYPE_SORT, GLOBAL_HIGHEST_DEV_STATUS_RANK, FIRST_APPROVED_DATE; order can support:desc, asc (default desc)'
          items:
            $ref: '#/components/schemas/B064-1DrugSearchCreate_DrugSearchSortDto'
    B074DrugMilestone_CommonEntity:
      type: object
      properties:
        id:
          type: string
          example: 11acf267a4fc42f392751e023482aac3
          description: ID
        display_name:
          type: array
          example:
          - lang: EN
            name: CTNNB1 Mutation
          description: Name, Referencing "CommonName"
          items:
            $ref: '#/components/schemas/B074DrugMilestone_CommonName'
    B074DrugMilestone_CommonDisease:
      type: object
      properties:
        disease_id:
          type: string
          example: 06a9082fe1ec4c97bea31d888b9cfdce
          description: Disease ID
        display_name:
          type: array
          example:
          - lang: EN
            name: Uveitic Macular Edema
          - lang: CN
            name: 葡萄膜炎黄斑水肿
          description: Disease Name, Referencing "CommonName"
          items:
            $ref: '#/components/schemas/B074DrugMilestone_CommonName'
    B064-1DrugSearchCreate_DrugSearchDrugTypeConditionValue:
      type: object
      properties:
        condition:
          type: string
          example: OR
          description: Logical operators, The value is an enum with the following values:AND,OR. Case-sensitive.
        value:
          type: array
          example:
          - c38eb408d6b842f487d6a27484156633
          description: Value List
    B064-3DrugSearchQuery_SpecialApprovalAlert:
      type: object
      properties:
        uuid:
          type: string
          example: uuid_123456789
          description: Unique identifier
        country:
          type: string
          example: US
          description: Country
        drug_id:
          type: string
          example: drug_123456
          description: Drug ID
        drug_type:
          type: array
          example:
          - small_molecule
          description: Drug type ID list
        target_id:
          type: string
          example: target_001
          description: Target ID
        disease_id:
          type: string
          example: disease_001
          description: Disease ID
        data_source:
          $ref: '#/components/schemas/B064-3DrugSearchQuery_DataSource'
        country_view:
          $ref: '#/components/schemas/B064-3DrugSearchQuery_RegionEntity'
        drug_id_view:
          $ref: '#/components/schemas/B064-3DrugSearchQuery_DrugEntity'
        event_type_cn:
          type: string
          example: 特殊审批
          description: Event type Chinese
        event_type_en:
          type: string
          example: Special Approval
          description: Event type English
        drug_type_view:
          type: array
          example:
          - dictId: small_molecule
            displayNameCn: 小分子药物
            displayNameEn: Small Molecule
          description: Drug type details list
          items:
            $ref: '#/components/schemas/B064-3DrugSearchQuery_DrugTypeEntity'
        special_review:
          type: string
          example: fast_track
          description: Special review
        target_id_view:
          $ref: '#/components/schemas/B064-3DrugSearchQuery_TargetEntity'
        disease_id_view:
          $ref: '#/components/schemas/B064-3DrugSearchQuery_DiseaseEntity'
        organization_id:
          type: string
          example: org_001
          description: Organization ID
        special_review_view:
          $ref: '#/components/schemas/B064-3DrugSearchQuery_SpecialReviewEntity'
        organization_id_view:
          $ref: '#/components/schemas/B064-3DrugSearchQuery_OrganizationEntity'
    B064-1DrugSearchCreate_AlertResponse:
      type: object
      properties:
        alert_id:
          type: string
          example: 561a206a-25c5-4883-be9a-b48eb55edba2
          description: Alert ID
    B064-1DrugSearchCreate_DrugSearchDrugConditionValue:
      type: object
      properties:
        condition:
          type: string
          example: OR
          description: Logical operators, The value is an enum with the following values:AND,OR. Case-sensitive.
        value:
          type: array
          example:
          - 945fa31ebe9e41ae912e493aa3324576
          description: Value List
    B057SynapseBullEyesPlot_CommonTarget:
      type: object
      properties:
        target_id:
          type: string
          example: 1c2067e5ab054a8995f73efcfcf56207
          description: Target ID
        short_name:
          type: array
          example:
          - lang: EN
            name: VEGF
          description: Target Short Name, Referencing "CommonName"
          items:
            $ref: '#/components/schemas/B057SynapseBullEyesPlot_CommonName'
        display_name:
          type: array
          example:
          - lang: EN
            name: Vascular endothelial growth factor
          - lang: CN
            name: 血管内皮生长因子
          description: Target Full Name, Referencing "CommonName"
          items:
            $ref: '#/components/schemas/B057SynapseBullEyesPlot_CommonName'
    B064-1DrugSearchCreate_DrugSearchOrganizationConditionValue:
      type: object
      properties:
        condition:
          type: string
          example: OR
          description: Logical operators, The value is an enum with the following values:AND,OR. Case-sensitive.
        value:
          type: array
          example:
          - 6a8c172f1efc649035845f94c31a9c1e
          description: Value List
    B074DrugMilestone_DrugMilestoneResponseDetail:
      type: object
      properties:
        date:
          type: string
          example: '2025-09-09'
          description: Date
        event:
          type: array
          example: 'Please check the form: CommonEntity'
          description: Event
          items:
            $ref: '#/components/schemas/B074DrugMilestone_CommonEntity'
        country:
          type: array
          example: 'Please check the form: CommonCountry'
          description: Country/Location
          items:
            $ref: '#/components/schemas/B074DrugMilestone_CommonCountry'
        disease:
          type: array
          example: 'Please check the form: CommonDisease'
          description: Disease
          items:
            $ref: '#/components/schemas/B074DrugMilestone_CommonDisease'
        description:
          type: array
          example: 'Please check the form: CommonName'
          description: Description
          items:
            $ref: '#/components/schemas/B074DrugMilestone_CommonName'
        event_status:
          $ref: '#/components/schemas/B074DrugMilestone_CommonEntity'
        organization:
          type: array
          example: 'Please check the form: CommonOrganization'
          description: Organization
          items:
            $ref: '#/components/schemas/B074DrugMilestone_CommonOrganization'
        milestone_tag:
          type: array
          example: 'Please check the form: CommonName'
          description: Milestone Tag
          items:
            $ref: '#/components/schemas/B074DrugMilestone_CommonName'
    B064-3DrugSearchQuery_OrganizationEntity:
      type: object
      properties:
        entity_id:
          type: string
          example: ca22cc385c771846b24b6df608005a9a
          description: Entity ID
        display_name_cn:
          type: string
          example: 华东师范大学
          description: Chinese display name
        display_name_en:
          type: string
          example: East China Normal University
          description: English display name
    B064-3DrugSearchQuery_PatentAlert:
      type: object
      properties:
        pn:
          type: string
          example: US10123456B2
          description: Patent number
        title_cn:
          type: string
          example: 一种新型抗癌药物化合物
          description: Patent title Chinese
        title_en:
          type: string
          example: Novel Anti-cancer Drug Compound
          description: Patent title English
        patent_id:
          type: string
          example: patent_123456
          description: Patent ID
        event_time_cn:
          type: string
          example: 2024年1月15日
          description: Event time Chinese
        event_time_en:
          type: string
          example: January 15, 2024
          description: Event time English
        event_type_cn:
          type: string
          example: 专利授权
          description: Event type Chinese
        event_type_en:
          type: string
          example: Patent Granted
          description: Event type English
        expire_date_cn:
          type: string
          example: 2030年12月31日
          description: Expire date Chinese
        expire_date_en:
          type: string
          example: December 31, 2030
          description: Expire date English
    B064-3DrugSearchQuery_DrugTypeEntity:
      type: object
      properties:
        dict_id:
          type: string
          example: e24259c0e9fe439b8b8fb5985182a517
          descript

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