Binarly Escalation API

The Escalation API from Binarly — 1 operation(s) for escalation.

Operations 1

GET /api/v4/products/{productId}/findings/-/escalations List Product Finding Escalations #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/binarly-escalation-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

binarly-escalation-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Binarly Assistant Escalation API
  version: 4.275.2
security:
- auth: []
tags:
- name: Escalation
paths:
  /api/v4/products/{productId}/findings/-/escalations:
    get:
      summary: List Product Finding Escalations
      operationId: ListProductFindingEscalations
      x-permission: products.view
      tags:
      - Escalation
      parameters:
      - $ref: '#/components/parameters/PathProductId'
      - $ref: '#/components/parameters/QuerySkip'
      - $ref: '#/components/parameters/QuerySize'
      - $ref: '#/components/parameters/QueryOptionalContentType'
      - $ref: '#/components/parameters/QueryOptionalCvssFrom'
      - $ref: '#/components/parameters/QueryOptionalCvssTo'
      - $ref: '#/components/parameters/QueryOptionalEpssProbabilityFrom'
      - $ref: '#/components/parameters/QueryOptionalEpssProbabilityTo'
      - $ref: '#/components/parameters/QueryOptionalEmsFrom'
      - $ref: '#/components/parameters/QueryOptionalEmsTo'
      - $ref: '#/components/parameters/QueryOptionalHasKnownFix'
      - $ref: '#/components/parameters/QueryOptionalExploitabilityPredicates'
      - $ref: '#/components/parameters/QueryOptionalDependencyName'
      - $ref: '#/components/parameters/QueryOptionalIsKev'
      - name: sortBy
        required: false
        in: query
        schema:
          type: string
          enum:
          - createTime
      - name: imageId
        required: false
        in: query
        schema:
          $ref: '#/components/schemas/ULID'
      - name: vulnId
        required: false
        in: query
        schema:
          type: string
      - name: createTimeFrom
        required: false
        in: query
        schema:
          type: string
      - name: createTimeTo
        required: false
        in: query
        schema:
          type: string
      - name: withFinding
        required: false
        in: query
        schema:
          type: boolean
      - name: withVulnerabilityDiff
        required: false
        in: query
        schema:
          type: boolean
      responses:
        '200':
          description: success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProductFindingEscalations'
            text/csv:
              schema:
                type: string
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  schemas:
    WithFindingId:
      type: object
      required:
      - findingId
      properties:
        findingId:
          allOf:
          - $ref: '#/components/schemas/ULID'
    FindingTypeCount:
      allOf:
      - $ref: '#/components/schemas/WithFindingType'
      - $ref: '#/components/schemas/WithCount'
    WithHasVEX:
      type: object
      required:
      - hasVEX
      properties:
        hasVEX:
          type: boolean
    WithOptionalUserStatus:
      type: object
      properties:
        status:
          type: string
          x-go-type: string
          enum:
          - active
          - archived
    FindingEvidenceArtefact:
      type: object
      properties: {}
    WithOptionalVulnerabilityHistory:
      type: object
      properties:
        history:
          type: array
          items:
            $ref: '#/components/schemas/Vulnerability'
    FindingNote:
      type: object
      required:
      - title
      - content
      properties:
        title:
          type: string
        content:
          type: string
    WithImages:
      type: object
      required:
      - images
      properties:
        images:
          type: array
          items:
            $ref: '#/components/schemas/Image'
    File:
      allOf:
      - $ref: '#/components/schemas/WithId'
      - $ref: '#/components/schemas/WithCreateTime'
      - $ref: '#/components/schemas/WithOptionalParent'
      - $ref: '#/components/schemas/WithAuthor'
      - $ref: '#/components/schemas/WithFilename'
      - $ref: '#/components/schemas/WithIsAttachment'
      - $ref: '#/components/schemas/WithDownloadUrl'
      - $ref: '#/components/schemas/WithOptionalMetadata'
    WithUnsafeFunctionsCount:
      type: object
      required:
      - unsafeFunctionsCount
      properties:
        unsafeFunctionsCount:
          type: integer
    ProductFindingEscalation:
      allOf:
      - $ref: '#/components/schemas/WithId'
      - $ref: '#/components/schemas/WithCreateTime'
      - $ref: '#/components/schemas/WithVulnId'
      - $ref: '#/components/schemas/WithFindingId'
      - $ref: '#/components/schemas/WithVulnerabilityId'
      - $ref: '#/components/schemas/WithVulnerabilityHistoryId'
      - $ref: '#/components/schemas/WithOptionalFinding'
      - $ref: '#/components/schemas/WithOptionalVulnerabilityDiff'
    WithOptionalCVSS:
      type: object
      properties:
        cvss:
          $ref: '#/components/schemas/FindingCVSS'
    WithVulnerabilityId:
      type: object
      required:
      - vulnerabilityId
      properties:
        vulnerabilityId:
          $ref: '#/components/schemas/ULID'
    WithOptionalReachabilities:
      type: object
      properties:
        reachabilities:
          type: array
          items:
            $ref: '#/components/schemas/FindingReachability'
    ErrorResponse:
      required:
      - message
      type: object
      properties:
        message:
          type: string
          readOnly: true
          x-go-type-skip-optional-pointer: true
        details:
          type: array
          items:
            $ref: '#/components/schemas/ErrorDetail'
    WithExpiredCertificatesCount:
      type: object
      required:
      - expiredCertificatesCount
      properties:
        expiredCertificatesCount:
          type: integer
    WithFingerprint:
      type: object
      required:
      - fingerprint
      properties:
        fingerprint:
          type: string
    FindingReference:
      type: object
      required:
      - description
      - url
      properties:
        description:
          type: string
        url:
          type: string
    WithVendor:
      type: object
      required:
      - vendor
      properties:
        vendor:
          type: string
    WithOccurrences:
      type: object
      required:
      - occurrences
      properties:
        occurrences:
          type: array
          items:
            $ref: '#/components/schemas/Occurrence'
    WithOptionalEPSS:
      type: object
      properties:
        epss:
          $ref: '#/components/schemas/FindingEPSS'
    WithDownloadUrl:
      type: object
      required:
      - downloadUrl
      properties:
        downloadUrl:
          type: string
          readOnly: true
    FindingEPSS:
      type: object
      properties:
        probability:
          type: string
        percentile:
          type: string
    WithScan:
      type: object
      required:
      - scan
      properties:
        scan:
          $ref: '#/components/schemas/Scan'
    WithOptionalFiles:
      type: object
      properties:
        files:
          type: array
          items:
            $ref: '#/components/schemas/File'
    FindingClassification:
      type: object
      properties:
        cwe:
          type: string
        attck:
          type: string
        mbc:
          type: string
    WithFindingTypeCounts:
      type: object
      required:
      - findingTypeCounts
      properties:
        findingTypeCounts:
          type: array
          items:
            $ref: '#/components/schemas/FindingTypeCount'
    Vulnerability:
      allOf:
      - $ref: '#/components/schemas/WithId'
      - $ref: '#/components/schemas/WithCreateTime'
      - $ref: '#/components/schemas/WithVulnId'
      - $ref: '#/components/schemas/WithPublished'
      - $ref: '#/components/schemas/WithLastModified'
      - $ref: '#/components/schemas/WithOptionalLastEscalateTime'
      - $ref: '#/components/schemas/WithDescription'
      - $ref: '#/components/schemas/WithRecommendedAction'
      - $ref: '#/components/schemas/WithImpact'
      - $ref: '#/components/schemas/WithOptionalCVSS'
      - $ref: '#/components/schemas/WithOptionalEMS'
      - $ref: '#/components/schemas/WithOptionalEPSS'
      - $ref: '#/components/schemas/WithOptionalSSVC'
      - $ref: '#/components/schemas/WithIsKev'
      - $ref: '#/components/schemas/WithIsKnownRansomwareUse'
      - $ref: '#/components/schemas/WithClassifications'
      - $ref: '#/components/schemas/WithIsRejected'
      - $ref: '#/components/schemas/WithIsDisputed'
      - $ref: '#/components/schemas/WithReferences'
      - $ref: '#/components/schemas/WithGithubPOCsURLs'
      - $ref: '#/components/schemas/WithExploitURLs'
      - $ref: '#/components/schemas/WithVerifiedExploitURLs'
      - $ref: '#/components/schemas/WithWeaponisedExploitURLs'
      - $ref: '#/components/schemas/WithOptionalVulnerabilityHistory'
      - $ref: '#/components/schemas/WithOptionalProducts'
    NISTIR8547Recommendations:
      type: object
      properties:
        recommendations:
          type: array
          items:
            $ref: '#/components/schemas/NISTIR8547Recommendation'
    FindingSSVC:
      type: object
      properties:
        exploitation:
          type: string
        automatable:
          type: boolean
        technicalImpact:
          type: string
        missionPrevalence:
          type: string
        publicWellBeingImpact:
          type: string
        decision:
          type: string
        paranoid_decision:
          type: string
    NISTIR8547KeyEstablishmentSecurity:
      type: object
      properties:
        keyEstablishment:
          $ref: '#/components/schemas/NISTIR8547KeyEstablishment'
      required:
      - keyEstablishment
    Component:
      allOf:
      - $ref: '#/components/schemas/WithPlatformId'
      - $ref: '#/components/schemas/WithName'
      - $ref: '#/components/schemas/WithPath'
      - $ref: '#/components/schemas/WithOptionalContainerPath'
      - $ref: '#/components/schemas/WithOptionalAttributes'
      - $ref: '#/components/schemas/WithOptionalKind'
      - $ref: '#/components/schemas/WithOptionalMd5'
      - $ref: '#/components/schemas/WithOptionalSha1'
      - $ref: '#/components/schemas/WithOptionalSha256'
    NISTIR8547HashAndXOF:
      type: object
      properties:
        collisionSecurityStrength:
          type: string
        collisionSecurityCategory:
          type: integer
        preimageSecurityStrength:
          type: string
        preimageSecurityCategory:
          type: integer
      required:
      - collisionSecurityStrength
      - collisionSecurityCategory
      - preimageSecurityStrength
      - preimageSecurityCategory
    WithOptionalCreateTime:
      type: object
      properties:
        createTime:
          type: string
          readOnly: true
          example: '2024-01-01T01:00:00Z'
    WithCreateTime:
      type: object
      required:
      - createTime
      properties:
        createTime:
          type: string
          readOnly: true
          example: '2024-01-01T01:00:00Z'
    WithOptionalEMS:
      type: object
      properties:
        ems:
          $ref: '#/components/schemas/FindingEMS'
    WithOptionalLastEscalateTime:
      type: object
      properties:
        lastEscalateTime:
          type: string
          example: '2024-01-01T01:00:00Z'
    WithOptionalSha1:
      type: object
      properties:
        sha1:
          type: string
    WithOptionalAuthor:
      type: object
      properties:
        author:
          $ref: '#/components/schemas/User'
    ResourceType:
      type: string
      enum:
      - Org
      - Group
      - Product
      - User
      - Image
      - Finding
      - Occurrence
    NISTIR8547Transition:
      type: object
      properties:
        status:
          $ref: '#/components/schemas/NISTIR8547ApprovalStatus'
        year:
          type: integer
    WithKnownFixedVersion:
      type: object
      required:
      - knownFixedVersion
      properties:
        knownFixedVersion:
          type: string
    WithKevCount:
      type: object
      required:
      - kev
      properties:
        kev:
          type: integer
    WithVerifiedExploitURLs:
      type: object
      required:
      - verifiedExploitURLs
      properties:
        verifiedExploitURLs:
          type: array
          items:
            type: string
    WithOptionalContainerPath:
      type: object
      properties:
        containerPath:
          type: string
    Image:
      allOf:
      - $ref: '#/components/schemas/WithId'
      - $ref: '#/components/schemas/WithName'
      - $ref: '#/components/schemas/WithVersion'
      - $ref: '#/components/schemas/WithOptionalParent'
      - $ref: '#/components/schemas/WithCreateTime'
      - $ref: '#/components/schemas/WithAuthor'
      - $ref: '#/components/schemas/WithOptionalFiles'
      - $ref: '#/components/schemas/WithOptionalScans'
      - $ref: '#/components/schemas/WithOptionalLatestScan'
      - $ref: '#/components/schemas/WithOptionalIsArchived'
      - $ref: '#/components/schemas/WithOptionalImageCounts'
    ImageCounts:
      allOf:
      - $ref: '#/components/schemas/WithNewEscalationsCount'
      - $ref: '#/components/schemas/WithDependenciesCount'
      - $ref: '#/components/schemas/WithCryptographicAssetsCount'
      - $ref: '#/components/schemas/WithFindingTypeCounts'
      - $ref: '#/components/schemas/WithKevCount'
      - $ref: '#/components/schemas/WithExpiredCertificatesCount'
      - $ref: '#/components/schemas/WithUnsafeFunctionsCount'
    Scan:
      allOf:
      - $ref: '#/components/schemas/WithId'
      - $ref: '#/components/schemas/WithCreateTime'
      - $ref: '#/components/schemas/WithOptionalParent'
      - $ref: '#/components/schemas/WithAuthor'
      - $ref: '#/components/schemas/WithOptionalLatestScanState'
    WithUserId:
      type: object
      required:
      - userId
      properties:
        userId:
          type: string
          readOnly: true
          x-go-type-skip-optional-pointer: true
    NISTIR8547HashAndXOFSecurity:
      type: object
      properties:
        hashAndXOF:
          $ref: '#/components/schemas/NISTIR8547HashAndXOF'
      required:
      - hashAndXOF
    FindingCVSS:
      type: object
      properties:
        cvssV2:
          $ref: '#/components/schemas/FindingCVSSMetrics'
        cvssV3:
          $ref: '#/components/schemas/FindingCVSSMetrics'
        cvssV4:
          $ref: '#/components/schemas/FindingCVSSMetrics'
    WithPlatformId:
      type: object
      required:
      - id
      properties:
        id:
          type: string
    ScanState:
      allOf:
      - $ref: '#/components/schemas/WithId'
      - $ref: '#/components/schemas/WithScanStateType'
      - $ref: '#/components/schemas/WithOptionalParent'
      - $ref: '#/components/schemas/WithCreateTime'
      - $ref: '#/components/schemas/WithOptionalAuthor'
      - $ref: '#/components/schemas/WithOptionalSource'
    WithCount:
      type: object
      required:
      - count
      properties:
        count:
          type: integer
    WithOptionalAttributes:
      type: object
      properties:
        attributes: {}
    WithNewEscalationsCount:
      type: object
      required:
      - newEscalationsCount
      properties:
        newEscalationsCount:
          type: integer
    WithFilename:
      type: object
      required:
      - filename
      properties:
        filename:
          type: string
    WithDependencyComponentsCount:
      type: object
      required:
      - dependencyComponentsCount
      properties:
        dependencyComponentsCount:
          type: integer
    WithWeaponisedExploitURLs:
      type: object
      required:
      - weaponisedExploitURLs
      properties:
        weaponisedExploitURLs:
          type: array
          items:
            type: string
    WithName:
      type: object
      required:
      - name
      properties:
        name:
          type: string
    ProductFindingEscalations:
      allOf:
      - $ref: '#/components/schemas/WithProductFindingEscalations'
    WithSeverity:
      type: object
      required:
      - severity
      properties:
        severity:
          type: string
          enum:
          - unspecified
          - low
          - medium
          - high
          - critical
    FindingEMS:
      type: object
      properties:
        score:
          type: string
    WithIsKnownRansomwareUse:
      type: object
      required:
      - isKnownRansomwareUse
      properties:
        isKnownRansomwareUse:
          type: boolean
    WithOptionalKind:
      type: object
      properties:
        kind:
          type: string
    WithNotes:
      type: object
      required:
      - notes
      properties:
        notes:
          type: array
          items:
            $ref: '#/components/schemas/FindingNote'
    WithOptionalEstimatedEPSS:
      type: object
      properties:
        estimatedEpss:
          $ref: '#/components/schemas/FindingEPSS'
    VulnerabilityDiff:
      allOf:
      - $ref: '#/components/schemas/WithVulnerabilityCurrent'
      - $ref: '#/components/schemas/WithOpionalVulnerabilityPrevious'
    WithFindingStatus:
      type: object
      required:
      - status
      properties:
        status:
          type: string
          enum:
          - new
          - in progress
          - rejected
          - remediated
    WithIsKev:
      type: object
      required:
      - isKev
      properties:
        isKev:
          type: boolean
    Parent:
      type: string
      format: path
      description: URI path (path-noscheme) without the leading /
      readOnly: true
      x-go-type: string
      x-go-type-skip-optional-pointer: true
    WithOptionalSSVC:
      type: object
      properties:
        ssvc:
          $ref: '#/components/schemas/FindingSSVC'
    WithOptionalVulnerabilityDiff:
      type: object
      properties:
        vulnerabilityDiff:
          $ref: '#/components/schemas/VulnerabilityDiff'
    WithDependenciesCount:
      type: object
      required:
      - dependenciesCount
      properties:
        dependenciesCount:
          type: integer
    WithOpionalVulnerabilityPrevious:
      type: object
      properties:
        vulnerabilityPrevious:
          $ref: '#/components/schemas/Vulnerability'
    NISTIR8547Recommendation:
      type: object
      properties:
        algorithm:
          type: string
        parameter:
          type: string
        security:
          $ref: '#/components/schemas/NISTIR8547Security'
    WithClassifications:
      type: object
      required:
      - classifications
      properties:
        classifications:
          type: array
          items:
            $ref: '#/components/schemas/FindingClassification'
    WithOptionalParent:
      type: object
      properties:
        parent:
          $ref: '#/components/schemas/Parent'
    WithVulnerabilityHistoryId:
      type: object
      required:
      - vulnerabilityHistoryId
      properties:
        vulnerabilityHistoryId:
          $ref: '#/components/schemas/ULID'
    FindingCompliance:
      type: object
      properties:
        nistIr8547:
          $ref: '#/components/schemas/NISTIR8547'
    WithVulnerabilityCurrent:
      type: object
      required:
      - vulnerabilityCurrent
      properties:
        vulnerabilityCurrent:
          $ref: '#/components/schemas/Vulnerability'
    WithProduct:
      type: object
      required:
      - product
      properties:
        product:
          type: string
    WithImageId:
      type: object
      required:
      - imageId
      properties:
        imageId:
          allOf:
          - $ref: '#/components/schemas/ULID'
    WithIsDisputed:
      type: object
      required:
      - isDisputed
      properties:
        isDisputed:
          type: boolean
    WithHasAdvisory:
      type: object
      required:
      - hasAdvisory
      properties:
        hasAdvisory:
          type: boolean
    WithEvidence:
      type: object
      required:
      - evidence
      properties:
        evidence:
          type: array
          items:
            $ref: '#/components/schemas/FindingEvidence'
    WithOptionalVulnerabilityId:
      type: object
      properties:
        vulnerability_id:
          $ref: '#/components/schemas/ULID'
    FindingEvidenceAnnotation:
      type: object
      properties: {}
    FindingIdentifier:
      type: object
      properties:
        brly:
          type: string
        cve:
          type: string
        ghsa:
          type: string
        gsd:
          type: string
        osv:
          type: string
    NISTIR8547KeyEstablishment:
      type: object
      properties:
        securityStrength:
          type: string
        securityCategory:
          type: integer
      required:
      - securityStrength
      - securityCategory
    WithClass:
      type: object
      required:
      - class
      properties:
        class:
          type: string
    ErrorDetail:
      type: object
      required:
      - error
      properties:
        reason:
          type: string
          x-go-type-skip-optional-pointer: true
        field:
          type: string
          x-go-type-skip-optional-pointer: true
        service:
          type: string
          x-go-type-skip-optional-pointer: true
    WithIsRejected:
      type: object
      required:
      - isRejected
      properties:
        isRejected:
          type: boolean
    WithPredicates:
      type: object
      required:
      - predicates
      properties:
        predicates:
          type: array
          items:
            $ref: '#/components/schemas/FindingPredicate'
    WithIdentifiers:
      type: object
      required:
      - identifiers
      properties:
        identifiers:
          type: array
          items:
            $ref: '#/components/schemas/FindingIdentifier'
    WithOptionalImageCounts:
      type: object
      properties:
        counts:
          $ref: '#/components/schemas/ImageCounts'
    NISTIR8547BlockCipher:
      type: object
      properties:
        securityStrength:
          type: string
        securityCategory:
          type: integer
      required:
      - securityStrength
      - securityCategory
    WithOptionalSource:
      type: object
      properties:
        source:
          $ref: '#/components/schemas/ULID'
    Occurrence:
      allOf:
      - $ref: '#/components/schemas/WithId'
      - $ref: '#/components/schemas/WithScan'
      - $ref: '#/components/schemas/WithCreateTime'
      - $ref: '#/components/schemas/WithSeverity'
      - $ref: '#/components/schemas/WithOptionalEstimatedEPSS'
      - $ref: '#/components/schemas/WithOptionalReachabilities'
      - $ref: '#/components/schemas/WithComponent'
      - $ref: '#/components/schemas/WithDependencyComponentsCount'
      - $ref: '#/components/schemas/WithEvidence'
      - $ref: '#/components/schemas/WithNotes'
      - $ref: '#/components/schemas/WithFingerprint'
      - $ref: '#/components/schemas/WithOptionalDependency'
      - $ref: '#/components/schemas/WithImageId'
    WithOptionalProducts:
      type: object
      properties:
        products:
          type: array
          items:
            $ref: '#/components/schemas/Product'
    FindingPredicate:
      type: object
      properties:
        kev:
          type: boolean
        knownRansomwareUse:
          type: boolean
    NISTIR8547BlockCipherSecurity:
      type: object
      properties:
        blockCipher:
          $ref: '#/components/schemas/NISTIR8547BlockCipher'
      required:
      - blockCipher
    ULID:
      type: string
      format: ulid
      minLength: 26
      maxLength: 26
      example: 01ARZ3NDEKTSV4RRFFQ69G5FAV
      x-go-type: ulid.ULID
      x-go-type-import:
        path: github.com/oklog/ulid/v2
    WithPublished:
      type: object
      required:
      - published
      properties:
        published:
          type: string
          example: '2024-01-01T01:00:00Z'
    WithScanStateType:
      type: object
      required:
      - type
      properties:
        type:
          type: string
          enum:
          - new
          - running
          - failed
          - done
          - cancelled
    WithProductFindingEscalations:
      type: object
      required:
      - escalations
      properties:
        escalations:
          type: array
          items:
            $ref: '#/components/schemas/ProductFindingEscalation'
    WithGithubPOCsURLs:
      type: object
      required:
      - githubPOCsURLs
      properties:
        githubPOCsURLs:
          type: array
          items:
            type: string
    WithLicense:
      type: object
      required:
      - license
      properties:
        license:
          type: string
    NISTIR8547SecurityProfile:
      type: object
      properties:
        security:
          $ref: '#/components/schemas/NISTIR8547Security'
    WithOptionalLatestScan:
      type: object
      properties:
        latestScan:
          $ref: '#/components/schemas/Scan'
    WithVulnId:
      type: object
      required:
      - vulnId
      properties:
        vulnId:
          type: string
    NISTIR8547DigitalSignatureSecurity:
      type: object
      properties:
        digitalSignature:
          $ref: '#/components/schemas/NISTIR8547DigitalSignature'
      required:
      - digitalSignature
    WithOptionalIsArchived:
      type: object
      properties:
        isArchived:
          type: boolean
    User:
      readOnly: true
      allOf:
      - $ref: '#/components/schemas/WithUserId'
      - $ref: '#/components/schemas/WithOptionalId'
      - $ref: '#/components/schemas/WithOptionalCreateTime'
      - $ref: '#/components/schemas/WithOptionalEmail'
      - $ref: '#/components/schemas/WithOptionalUserStatus'
      - $ref: '#/components/schemas/WithOptionalResourceType'
    WithOptionalScans:
      type: object
      properties:
        scans:
          type: array
          items:
            $ref: '#/components/schemas/Scan'
    WithToolName:
      type: object
      required:
      - toolName
      properties:
        toolName:
          type: string
    FindingEvidence:
      type: object
      required:
      - artefacts
      - annotations
      - attributes
      properties:
        artefacts:
          type: array
          items:
            $ref: '#/components/schemas/FindingEvidenceArtefact'
        annotations:
          type: array
          items:
            $ref: '#/components/schemas/FindingEvidenceAnnotation'
        attributes:
          type: object
          properties: {}
    WithRecommendedAction:
      type: object
      required:
      - recommendedAction
      properties:
        recommendedAction:
          type: string
    WithOptionalSha256:
      type: object
      properties:
        sha256:
          type: string
    WithPath:
      type: object
      required:
      - path
      properties:
        path:
          type: string
    NISTIR8547DigitalSignature:
      type: object
      properties:
        securityStrength:
          type: string
        securityCategory:
          type: integer
      required:
      - securityStrength
      - securityCategory
    Finding:
      allOf:
      - $ref: '#/components/schemas/WithId'
      - $ref: '#/components/schemas/WithClass'
      - $ref: '#/components/schemas/WithName'
      - $ref: '#/components/schemas/WithImages'
      - $ref: '#/components/schemas/WithCreateTime'
      - $ref: '#/components/schemas/WithToolName'
      - $ref: '#/components/schemas/WithSeverity'
      - $ref: '#/components/schemas/WithFindingType'
      - $ref: '#/components/schemas/WithFindingStatus'
      - $ref: '#/components/schemas/WithKnownFixedVersion'
      - $ref: '#/components/schemas/WithIdentifiers'
      - $ref: '#/components/schemas/WithClassifications'
      - $ref: '#/components/schemas/WithPredicates'
      - $ref: '#/components/schemas/WithReferences'
      - $ref: '#/components/schemas/WithCompliance'
      - $ref: '#/components/schemas/WithOptionalCVSS'
      - $ref: '#/components/schemas/WithOptionalEPSS'
      - $ref: '#/components/schemas/WithOptionalSSVC'
      - $ref: '#/components/schemas/WithOptionalEMS'
      - $ref: '#/components/schemas/WithDescription'
      - $ref: '#/components/schemas/WithImpact'
      - $ref: '#/components/schemas/WithRecommendedAction'
      - $ref: '#/components/schemas/WithTitle'
      - $ref: '#/components/schemas/WithOccurrences'
      - $ref: '#/components/schemas/WithHasAdvisory'
      - $ref: '#/components/schemas/WithHasVEX'
      - $ref: '#/components/schemas/WithOptionalVulnerabilityId'
      - $ref: '#/components/schemas/WithOptionalConfidence'
    WithCryptographicAssetsCount:
      type: object
      required:
      - cryptographicAssetsCount
      properties:
        cryptographicAssetsCount:
          type: integer
    WithExploitURLs:
      type: object
      required:
      - exploitURLs
      properties:
        exploitURLs:
          type: array
          items:
            type: string
    WithLastModified:
      type: object
      required:
      - lastModified
      properties:
        lastModified:
          type: string
          example: '2024-01-01T01:00:00Z'
    Dependency:
      allOf:
      - $ref: '#/components/schemas/WithVendor'
      - $ref: '#/components/schemas/WithProduct'
      - $ref: '#/components/schemas/WithVersion'
      - $ref: '#/components/schemas/WithLicense'
      - $ref: '#/components/schemas/WithLinkage'
    WithCompliance:
      type: object
      required:
      - compliance
      properties:
        compliance:
          type: array
          items:
            $ref: '#/components/schemas/FindingCompliance'
    WithOptionalFinding:
      type: object
      properties:
        finding:
          $ref: '#/components/schemas/Finding'
    WithComponent:
      type: object
      required:
      - component
      properties:
        component:
          $ref: '#/components/schemas/Component'
    NISTIR8547ApprovalStatus:
      type: string
      enum:
      - UNSPECIFIED
      - ACCEPTABLE
      - DEPRECATED
      - DISALLOWED
      - LEGACY_USE
    WithLinkage:
      type: object
      required:
      - linkage
      properties:
        linkage:
          type: string
          enum:
          - unspecified
          - embedded
          - external
          - project
          - build
          - derived
          - vendored
          - direct
    WithOptionalResourceType:
      type: object
      properties:
        resourceType:
          $ref: '#/components/schemas/ResourceType'
    FindingReachability:
      type: object
      properties:
        kind:
          type: string
        confidence:
          type: number
          format: float
    WithOptionalEmail:
      type: object
      properties:
        email:
          type: string
          example: user@binarly.io
    WithOptionalMetadata:
      type: object
      properties:
        metadata:
          type: object
          additionalProperties:
            type: string
    WithImpact:
      type: object
      required:
      - impact
      properties:
        impact:
          type: string
    WithOptionalId:
      type: object
      properties:
        id:
          readOnly: true
          allOf:
          - $ref: '#/components/schemas/ULID'
    WithOptionalMd5:
      type: object
      properties:
        md5:
          type: string
    WithVersion:
      type: object
      required:
      - version
      properties:
        version:
          type: string
    WithOptionalConfidence:
      type: object
      properties:
        confidence:
          type: number
          format: float
    WithIsAttachment:
      type: object
      required:
      - isAttachment
      properties:
        isAttachment:
          type: boolean
          default: false
          readOnly: true
    WithFindingType:
      type: object
      required:
      - type
      properties:
        type:
          type: string
          enum:
          - knownVulnerability
          - unknownVulnerability
          - maliciousCode
          - suspiciousCode
          - dependencyVulnerability
          - cryptographicAsset
          - mitigation
          - weakness
          - supplyChainFailure
          - secret
          - leakedSecret
          - uncategorized
    Product:
      allOf:
      - $ref: '#/components/schemas/WithId'
      - $ref: '#/components/schemas/WithName'
      - $ref: '#/components/schemas/WithOptionalParent'
      - $ref: '#/components/schemas/WithOptionalDescription'
 

# --- truncated at 32 KB (37 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/binarly/refs/heads/main/openapi/binarly-escalation-api-openapi.yml