> ## Documentation Index
> Fetch the complete documentation index at: https://docs.aiderx.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Send a probe bid request to an ad source

> Sends one real OpenRTB BidRequest to the ad source and returns its raw response.

A 4xx/5xx from the ad source is returned as a 200 with `status_code` set: the vendor
rejecting the request is the probe result, not a failure of this endpoint.



## OpenAPI

````yaml /openapi/adm.openapi.en-dev.json post /api/manager/allocations/bid-request-probes
openapi: 3.1.0
info:
  description: >
    ## Introduction

    The Data Management APIs comprehensively oversees the **diverse data** used
    by advertising and recommendation systems, ensuring that the Decision API
    runs accurately and efficiently.


    From registering, updating, and deleting campaigns and placements to **log
    and statistics analysis**, it provides the insights necessary for effective
    system operation.


    The resulting data and metrics are used by the Decision API to **optimize ad
    and content decisions**, ultimately boosting the overall performance of the
    advertising and recommendation system.
  title: Data Management APIs
  version: dev
servers: []
security: []
tags:
  - description: >-
      Authentication endpoints. All roles (admin, operator, advertiser) use
      these to log in, refresh tokens, and manage their own credentials.
    name: Auth
  - description: >-
      Advertiser account management. Operators and admins onboard advertisers,
      manage their budgets, and deactivate accounts. Advertisers can only read
      their own profile and balance — they cannot create, delete, or modify
      another advertiser's account.
    name: Advertisers
  - description: >-
      Internal user (operator / admin) account management. Admin only. Covers
      creating operator accounts, changing roles, toggling activation status,
      and hard-deleting accounts. Operators have no access to this resource.
    name: Users
  - description: >-
      The AdUnit Management API provides comprehensive functionalities for
      managing ad units and related resources. AdUnits are organized in a
      hierarchical path structure derived from their code and parent path. Only
      admin and operator roles have access — advertisers cannot access raw
      inventory. References:
      [Placement](https://docs.aiderx.io/guides/about-a2/en/placement)
    name: AdUnit
  - description: >-
      Ad catalog management. CRUD for ad catalogs plus public shared-view access
      via a share link.
    name: Ad Catalogs
  - description: >-
      Ad source (demand partner) management. CRUD for external ad sources that
      supply demand to ad units.
    name: AdSource
  - description: >-
      Allocation management. An allocation binds a line item to a serving target
      such as an ad unit. Covers CRUD, status counts, and single-allocation
      lookup.
    name: Allocations
  - description: >-
      Associated items pool (admin). Bulk upsert/delete and lookup of
      associated-items pools used by the recommendation pipeline.
    name: AssociatedItemsPool
  - description: >-
      Custom targeting segment management. CRUD and bulk operations for custom
      targeting segments.
    name: Custom Targeting Segment
  - description: Audit log access. Read the system audit log of administrative actions.
    name: Audit Logs
  - description: >-
      Creative block list. List, block, and unblock creatives to exclude them
      from serving.
    name: Blocked Creative
  - description: Catalog item management. List and update catalog (product/data) items.
    name: Catalogs
  - description: >-
      Creative asset management. Operators and admins manage creatives;
      advertisers see only their own. Deletion is blocked while any line-item
      association (LICA) still exists.
    name: Creatives
  - description: >-
      Dashboard aggregates. Summary data, inventory, and line-item metric
      rollups for the console dashboard.
    name: Dashboard
  - description: Experiment management. CRUD for A/B and optimization experiments.
    name: Experiment
  - description: >-
      External creative inspection. Read-only access to creatives ingested from
      external demand sources.
    name: External Creative
  - description: >-
      Third-party integration management. Manage integration sources (external
      data/serving connectors), probe connectivity, and read public
      (sensitive-config-redacted) configs.
    name: Integration
  - description: >-
      Line Item–Creative Associations (LICA). Associates creatives with line
      items, including batch create and delete (max 100, partial failure
      allowed) and dashboard counts.
    name: LICAs
  - description: License information. Read available license features and usage metrics.
    name: License
  - description: >-
      Line item management within an order. Covers create, update, delete, batch
      operations (max 100, partial failure allowed), and status transitions. A
      line item defines budget, goal, schedule, and targeting under its parent
      order.
    name: LineItems
  - description: Media library. List, upload, and delete media files used by creatives.
    name: Media Library
  - description: >-
      Metric query endpoints. Retrieve aggregated metrics for ad units,
      creatives, line items, and related entities.
    name: Metric
  - description: >-
      Advertiser order management. Operators and admins create and manage orders
      that group line items under a single budget; advertisers can read their
      own. Includes batch operations (max 100) and draft-only deletion rules.
    name: Orders
  - description: >-
      Placement management. A placement maps ad units to a serving surface.
      Endpoints cover CRUD and replacing the ad units bound to a placement.
    name: Placements
  - description: >-
      System settings. Read and update system configuration, including site
      logo, public URL, TLS, and access-token regeneration.
    name: Settings
  - description: System resources. Public static resources such as the site logo.
    name: System
  - description: >-
      Operational/developer control endpoints. Low-level ext patches and health
      checks intended for internal operation, not general API consumers.
    name: developer
  - description: >-
      Operational allocation control. Update allocation ext or force-update
      status (admin only).
    name: developer/control/allocations
  - description: >-
      Ad-serving monitoring (operational). Read ad-serving status, ad-unit
      monitoring history, and alerts.
    name: developer/monitoring
  - description: Internal health and probe endpoints.
    name: internal
  - description: >-
      Manager-level utility endpoints (e.g. service health) not tied to a
      specific resource.
    name: manager
  - description: Manage mappings between ad units, native formats, and native styles.
    name: Ad Unit Native Style
  - description: Manage custom targeting keys, including lifecycle and bulk operations.
    name: Custom Targeting Key
  - description: >-
      Manage values belonging to custom targeting keys, including lifecycle and
      bulk operations.
    name: Custom Targeting Value
  - description: Manage native formats and the fields that define each format.
    name: Native Format
  - description: List templates available for native styles.
    name: Native Style Template
  - description: Manage native rendering styles.
    name: Native Style
paths:
  /api/manager/allocations/bid-request-probes:
    post:
      tags:
        - Allocations
      summary: Send a probe bid request to an ad source
      description: >-
        Sends one real OpenRTB BidRequest to the ad source and returns its raw
        response.


        A 4xx/5xx from the ad source is returned as a 200 with `status_code`
        set: the vendor

        rejecting the request is the probe result, not a failure of this
        endpoint.
      operationId: handle_probe_bid_request_api_manager_allocations_bid_request_probes_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BidRequestProbePayload'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BidRequestProbeResult'
          description: Successful Response
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPExceptionResponse'
          description: >-
            Bad request — no request could be assembled. The response `code`
            says why.
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPExceptionResponse'
          description: Forbidden
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPExceptionResponse'
          description: Ad unit or ad source not found
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - HTTPBearer: []
components:
  schemas:
    BidRequestProbePayload:
      additionalProperties: false
      description: POST /allocations/bid-request-probes request body.
      example:
        ad_source_id: a1b2c3d4-e5f6-7890-abcd-ef1234567890
        allocation_ext: {}
        environment: app
        platform: ios
        tid: <ad_unit_id>
        ttype: ad_unit
      properties:
        ad_source_id:
          description: Ad source to send the test bid request to
          format: uuid
          title: Ad Source Id
          type: string
        allocation_ext:
          $ref: '#/components/schemas/AllocationExt'
          description: Allocation ext under test
        environment:
          $ref: '#/components/schemas/EnvironmentType'
          description: Environment to test — web or app
        platform:
          $ref: '#/components/schemas/DevicePlatform'
          description: >-
            Device platform to test. It picks the User-Agent and `device.os`
            sent to the vendor in both environments, and for app it also picks
            which bundle (ios_bundle or android_bundle) is sent.
        tid:
          description: Target ID
          format: uuid
          title: Tid
          type: string
        ttype:
          $ref: '#/components/schemas/TargetType'
          description: Target type — only ad_unit is supported
      required:
        - ad_source_id
        - ttype
        - tid
        - environment
        - platform
        - allocation_ext
      title: BidRequestProbePayload
      type: object
    BidRequestProbeResult:
      description: |-
        실제로 보낸 BidRequest와 벤더 응답.

        벤더가 4xx/5xx를 돌려줘도 이 응답은 200이다. 벤더의 거절은 테스트 실패가
        아니라 테스트 결과다.
      properties:
        bid_request:
          additionalProperties: true
          description: BidRequest body that was sent
          title: Bid Request
          type: object
        body:
          anyOf:
            - type: string
            - type: 'null'
          description: >-
            Raw response body from the ad source, capped at 16000 bytes while
            reading — a body longer than that is cut off mid-download
          title: Body
        elapsed_ms:
          description: >-
            Round-trip time in milliseconds, including DNS, TCP and TLS setup.
            Not comparable to the edge server's read timeout, which is applied
            to the read stage alone over a pooled connection.
          title: Elapsed Ms
          type: integer
        error:
          anyOf:
            - type: string
            - type: 'null'
          description: >-
            Transport-level failure as `ExceptionClass: message` — the class
            name separates a connect timeout from a read timeout, which share
            the same message
          title: Error
        status_code:
          anyOf:
            - type: integer
            - type: 'null'
          description: HTTP status returned by the ad source — null if unreachable
          title: Status Code
      required:
        - bid_request
        - elapsed_ms
      title: BidRequestProbeResult
      type: object
    HTTPExceptionResponse:
      properties:
        detail:
          description: Detailed explanation for the exception
          title: Detail
          type: string
      required:
        - detail
      title: HTTPExceptionResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    AllocationExt:
      properties:
        ad_log_tracking_mode:
          $ref: '#/components/schemas/AdLogTrackingMode'
          default: on_ad_response
          description: 광고 로그 추적 모드 (송출로그 vs 이벤트 트래커)
        ad_source:
          anyOf:
            - $ref: '#/components/schemas/AdSource'
            - type: 'null'
        allowed_native_aspect_ratios:
          items:
            $ref: '#/components/schemas/NativeAspectRatioRange'
          title: Allowed Native Aspect Ratios
          type: array
        deferred_native_rendering:
          default: false
          title: Deferred Native Rendering
          type: boolean
        deferred_native_template:
          default: ''
          title: Deferred Native Template
          type: string
        demand_override:
          anyOf:
            - $ref: '#/components/schemas/DemandOverride'
            - type: 'null'
          description: ad_source에 대한 OpenRTB override. ad_source와 1:1이다.
        frequency_capping:
          $ref: '#/components/schemas/FrequencyCapping'
          default:
            enabled: 0
            limit_multiple_click: 0
            limit_user_impression:
              - limit_count: 0
                num_time_units: 0
                time_unit: day
        native_assets:
          anyOf:
            - items:
                $ref: '#/components/schemas/AssetRequest'
              type: array
            - type: 'null'
          title: Native Assets
        supported_environments:
          default:
            - web
            - app
          description: 해당 애드네트워크가 받아들일 수 있는 환경
          items:
            $ref: '#/components/schemas/EnvironmentType'
          title: Supported Environments
          type: array
      title: AllocationExt
      type: object
    EnvironmentType:
      enum:
        - web
        - app
      title: EnvironmentType
      type: string
    DevicePlatform:
      description: 유저가 고르는 단말 플랫폼.
      enum:
        - ios
        - android
      title: DevicePlatform
      type: string
    TargetType:
      enum:
        - ad_unit
        - placement
      title: TargetType
      type: string
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
    AdLogTrackingMode:
      enum:
        - on_ad_response
        - on_event_tracker
      title: AdLogTrackingMode
      type: string
    AdSource:
      properties:
        endpoint:
          description: Endpoint for the ad source
          title: Endpoint
          type: string
        header_params:
          anyOf:
            - {}
            - type: 'null'
          description: Header Parameters for the ad source
          title: Header Params
        id:
          description: >-
            Unique identifier for the ad source


            Uses `String` internally because some a2 code paths assign arbitrary
            names,

            while the exported schema declares it as `UUID`.
          format: uuid
          title: Id
          type: string
        name:
          description: Name of the ad source
          title: Name
          type: string
        query_params:
          anyOf:
            - {}
            - type: 'null'
          description: Query Parameters for the ad source
          title: Query Params
        seller_id:
          anyOf:
            - type: string
            - type: 'null'
          description: Seller ID for the ad source
          title: Seller Id
        settings:
          $ref: '#/components/schemas/a2_adm__generated__allocation__AdSourceSettings'
          default:
            required_registration: false
          description: Settings for the ad source
        type:
          description: Description of the ad source
          title: Type
          type: string
      required:
        - endpoint
        - id
        - name
        - type
      title: AdSource
      type: object
    NativeAspectRatioRange:
      properties:
        max:
          title: Max
          type: number
        min:
          title: Min
          type: number
      required:
        - max
        - min
      title: NativeAspectRatioRange
      type: object
    DemandOverride:
      properties:
        bidfloor:
          anyOf:
            - minimum: 0
              type: number
            - type: 'null'
          description: 필요하면 bidder별 floor/currency도 여기서 override (선택)
          title: Bidfloor
        bidfloorcur:
          anyOf:
            - type: string
            - type: 'null'
          title: Bidfloorcur
        clickbrowser:
          anyOf:
            - $ref: '#/components/schemas/Clickbrowser'
            - type: 'null'
          description: 'OpenRTB clickbrowser: browser used when clicking on ad (선택).'
        imp:
          anyOf:
            - $ref: '#/components/schemas/ImpOverride'
            - type: 'null'
          description: OpenRTB imp-level override (tagid/ext 등)
        implicit_app_inference:
          anyOf:
            - $ref: '#/components/schemas/ImplicitAppInference'
            - type: 'null'
        publisher:
          anyOf:
            - $ref: '#/components/schemas/PublisherSettings'
            - type: 'null'
        source:
          anyOf:
            - $ref: '#/components/schemas/Source'
            - type: 'null'
          description: OpenRTB source-level override (tagid/ext 등)
      title: DemandOverride
      type: object
    FrequencyCapping:
      properties:
        enabled:
          description: |-
            Enables frequency capping (1: enabled, 0: disabled).
            When enabled, user-level ad delivery limits are enforced.
          title: Enabled
          type: integer
        limit_multiple_click:
          description: |-
            Prevents multiple clicks from the same user on the same ad.
            1 to enable, 0 to disable.
          title: Limit Multiple Click
          type: integer
        limit_user_impression:
          default:
            - limit_count: 0
              num_time_units: 0
              time_unit: day
          description: Defines user-level impression limits based on time windows.
          items:
            $ref: '#/components/schemas/FrequencyCapRule'
          title: Limit User Impression
          type: array
      required:
        - enabled
        - limit_multiple_click
      title: FrequencyCapping
      type: object
    AssetRequest:
      anyOf:
        - $ref: '#/components/schemas/AssetRequest1'
        - $ref: '#/components/schemas/AssetRequest2'
        - $ref: '#/components/schemas/AssetRequest3'
        - $ref: '#/components/schemas/AssetRequest4'
      title: AssetRequest
    a2_adm__generated__allocation__AdSourceSettings:
      properties:
        required_registration:
          default: false
          title: Required Registration
          type: boolean
        timeout_ms:
          anyOf:
            - minimum: 0
              type: integer
            - type: 'null'
          title: Timeout Ms
      title: AdSourceSettings
      type: object
    Clickbrowser:
      enum:
        - 0
        - 1
      title: Clickbrowser
      type: integer
    ImpOverride:
      properties:
        ext:
          $ref: '#/components/schemas/ImpExtOverride'
          default: {}
          description: outgoing OpenRTB imp.ext override
        tagid:
          anyOf:
            - type: string
            - type: 'null'
          description: outgoing OpenRTB imp.tagid (내부 Allocation.tagid와 분리)
          title: Tagid
      title: ImpOverride
      type: object
    ImplicitAppInference:
      properties:
        android_bundle:
          anyOf:
            - type: string
            - type: 'null'
          title: Android Bundle
        app_name:
          anyOf:
            - type: string
            - type: 'null'
          title: App Name
        cat:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Cat
        ios_bundle:
          anyOf:
            - type: string
            - type: 'null'
          title: Ios Bundle
        ua_keywords:
          default: []
          items:
            type: string
          title: Ua Keywords
          type: array
      title: ImplicitAppInference
      type: object
    PublisherSettings:
      properties:
        company:
          anyOf:
            - type: string
            - type: 'null'
          title: Company
        domain:
          anyOf:
            - type: string
            - type: 'null'
          title: Domain
        ext:
          anyOf:
            - {}
            - type: 'null'
          title: Ext
        id:
          anyOf:
            - type: string
            - type: 'null'
          title: Id
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        page:
          anyOf:
            - type: string
            - type: 'null'
          title: Page
        seller_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Seller Id
      title: PublisherSettings
      type: object
    Source:
      properties:
        ext:
          anyOf:
            - {}
            - type: 'null'
          title: Ext
        fd:
          anyOf:
            - $ref: '#/components/schemas/FinalDecision'
            - type: 'null'
        pchain:
          anyOf:
            - type: string
            - type: 'null'
          title: Pchain
        schain:
          anyOf:
            - $ref: '#/components/schemas/SupplyChain'
            - type: 'null'
        tid:
          anyOf:
            - type: string
            - type: 'null'
          title: Tid
      title: Source
      type: object
    FrequencyCapRule:
      properties:
        limit_count:
          description: >-
            Maximum number of impressions allowed within the specified time
            window.
          minimum: 0
          title: Limit Count
          type: integer
        num_time_units:
          description: Number of time units for the frequency cap (e.g. 1 day, 2 hours).
          minimum: 0
          title: Num Time Units
          type: integer
        time_unit:
          $ref: '#/components/schemas/TimeUnit'
          description: Time unit for the frequency cap (e.g. day, hour).
      required:
        - limit_count
        - num_time_units
        - time_unit
      title: FrequencyCapRule
      type: object
    AssetRequest1:
      properties:
        data:
          anyOf:
            - $ref: '#/components/schemas/DataAssetRequest'
            - type: 'null'
        ext:
          anyOf:
            - {}
            - type: 'null'
          title: Ext
        id:
          title: Id
          type: integer
        img:
          anyOf:
            - $ref: '#/components/schemas/ImageAssetRequest'
            - type: 'null'
        required:
          anyOf:
            - $ref: '#/components/schemas/IsRequired'
            - type: 'null'
        title:
          anyOf:
            - $ref: '#/components/schemas/TitleAssetRequest'
            - type: 'null'
        video:
          anyOf:
            - $ref: '#/components/schemas/VideoAssetRequest'
            - type: 'null'
      required:
        - id
        - title
      title: AssetRequest1
      type: object
    AssetRequest2:
      properties:
        data:
          anyOf:
            - $ref: '#/components/schemas/DataAssetRequest'
            - type: 'null'
        ext:
          anyOf:
            - {}
            - type: 'null'
          title: Ext
        id:
          title: Id
          type: integer
        img:
          anyOf:
            - $ref: '#/components/schemas/ImageAssetRequest'
            - type: 'null'
        required:
          anyOf:
            - $ref: '#/components/schemas/IsRequired'
            - type: 'null'
        title:
          anyOf:
            - $ref: '#/components/schemas/TitleAssetRequest'
            - type: 'null'
        video:
          anyOf:
            - $ref: '#/components/schemas/VideoAssetRequest'
            - type: 'null'
      required:
        - id
        - img
      title: AssetRequest2
      type: object
    AssetRequest3:
      properties:
        data:
          anyOf:
            - $ref: '#/components/schemas/DataAssetRequest'
            - type: 'null'
        ext:
          anyOf:
            - {}
            - type: 'null'
          title: Ext
        id:
          title: Id
          type: integer
        img:
          anyOf:
            - $ref: '#/components/schemas/ImageAssetRequest'
            - type: 'null'
        required:
          anyOf:
            - $ref: '#/components/schemas/IsRequired'
            - type: 'null'
        title:
          anyOf:
            - $ref: '#/components/schemas/TitleAssetRequest'
            - type: 'null'
        video:
          anyOf:
            - $ref: '#/components/schemas/VideoAssetRequest'
            - type: 'null'
      required:
        - id
        - video
      title: AssetRequest3
      type: object
    AssetRequest4:
      properties:
        data:
          anyOf:
            - $ref: '#/components/schemas/DataAssetRequest'
            - type: 'null'
        ext:
          anyOf:
            - {}
            - type: 'null'
          title: Ext
        id:
          title: Id
          type: integer
        img:
          anyOf:
            - $ref: '#/components/schemas/ImageAssetRequest'
            - type: 'null'
        required:
          anyOf:
            - $ref: '#/components/schemas/IsRequired'
            - type: 'null'
        title:
          anyOf:
            - $ref: '#/components/schemas/TitleAssetRequest'
            - type: 'null'
        video:
          anyOf:
            - $ref: '#/components/schemas/VideoAssetRequest'
            - type: 'null'
      required:
        - data
        - id
      title: AssetRequest4
      type: object
    ImpExtOverride:
      properties:
        bidder:
          anyOf:
            - {}
            - type: 'null'
          description: 'imp.ext.bidder (Criteo의 경우 {"uid": "..."} 형태)'
          title: Bidder
        other:
          additionalProperties: true
          description: 그 외 ext 필드 확장용
          title: Other
          type: object
      title: ImpExtOverride
      type: object
    FinalDecision:
      enum:
        - 1
        - 2
      title: FinalDecision
      type: integer
    SupplyChain:
      properties:
        complete:
          $ref: '#/components/schemas/IsComplete'
        ext:
          anyOf:
            - {}
            - type: 'null'
          title: Ext
        nodes:
          items:
            $ref: '#/components/schemas/SupplyChainNode'
          title: Nodes
          type: array
        ver:
          title: Ver
          type: string
      required:
        - complete
        - nodes
        - ver
      title: SupplyChain
      type: object
    TimeUnit:
      enum:
        - minute
        - hour
        - day
        - week
        - month
      title: TimeUnit
      type: string
    DataAssetRequest:
      properties:
        ext:
          anyOf:
            - {}
            - type: 'null'
          title: Ext
        len:
          anyOf:
            - minimum: 0
              type: integer
            - type: 'null'
          title: Len
        type:
          maximum: 65535
          minimum: 0
          title: Type
          type: integer
      required:
        - type
      title: DataAssetRequest
      type: object
    ImageAssetRequest:
      properties:
        ext:
          anyOf:
            - {}
            - type: 'null'
          title: Ext
        h:
          anyOf:
            - minimum: 0
              type: integer
            - type: 'null'
          title: H
        hmin:
          anyOf:
            - minimum: 0
              type: integer
            - type: 'null'
          title: Hmin
        mimes:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Mimes
        type:
          anyOf:
            - maximum: 65535
              minimum: 0
              type: integer
            - type: 'null'
          title: Type
        w:
          anyOf:
            - minimum: 0
              type: integer
            - type: 'null'
          title: W
        wmin:
          anyOf:
            - minimum: 0
              type: integer
            - type: 'null'
          title: Wmin
      title: ImageAssetRequest
      type: object
    IsRequired:
      enum:
        - 0
        - 1
      title: IsRequired
      type: integer
    TitleAssetRequest:
      properties:
        ext:
          anyOf:
            - {}
            - type: 'null'
          title: Ext
        len:
          minimum: 0
          title: Len
          type: integer
      required:
        - len
      title: TitleAssetRequest
      type: object
    VideoAssetRequest:
      properties:
        ext:
          anyOf:
            - {}
            - type: 'null'
          title: Ext
        linearity:
          anyOf:
            - $ref: '#/components/schemas/LinearityMode'
            - type: 'null'
        maxduration:
          minimum: 0
          title: Maxduration
          type: integer
        mimes:
          items:
            type: string
          title: Mimes
          type: array
        minduration:
          minimum: 0
          title: Minduration
          type: integer
        protocols:
          items:
            maximum: 65535
            minimum: 0
            type: integer
          title: Protocols
          type: array
      required:
        - maxduration
        - mimes
        - minduration
        - protocols
      title: VideoAssetRequest
      type: object
    IsComplete:
      enum:
        - 0
        - 1
      title: IsComplete
      type: integer
    SupplyChainNode:
      properties:
        asi:
          title: Asi
          type: string
        domain:
          anyOf:
            - type: string
            - type: 'null'
          title: Domain
        ext:
          anyOf:
            - {}
            - type: 'null'
          title: Ext
        hp:
          anyOf:
            - $ref: '#/components/schemas/IsPayment'
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        rid:
          anyOf:
            - type: string
            - type: 'null'
          title: Rid
        sid:
          title: Sid
          type: string
      required:
        - asi
        - sid
      title: SupplyChainNode
      type: object
    LinearityMode:
      enum:
        - 1
        - 2
      title: LinearityMode
      type: integer
    IsPayment:
      enum:
        - 0
        - 1
      title: IsPayment
      type: integer
  securitySchemes:
    HTTPBearer:
      description: >-
        Bearer authentication. Pass the access token in the `Authorization:
        Bearer <token>` header.
      scheme: bearer
      type: http

````