> ## 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.

# Update allocation ext.

> Admin-only. Replaces `Allocation.ext` with the provided `ext` object after validating it against the AllocationExt schema. Fields omitted from the request are filled with schema defaults.



## OpenAPI

````yaml /openapi/adm.openapi.en-dev.json patch /api/developer/control/allocations/{no}/ext
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/developer/control/allocations/{no}/ext:
    patch:
      tags:
        - developer/control/allocations
      summary: Update allocation ext.
      description: >-
        Admin-only. Replaces `Allocation.ext` with the provided `ext` object
        after validating it against the AllocationExt schema. Fields omitted
        from the request are filled with schema defaults.
      operationId: >-
        handle_patch_allocation_ext_api_developer_control_allocations__no__ext_patch
      parameters:
        - in: path
          name: 'no'
          required: true
          schema:
            title: 'No'
            type: integer
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AllocationExtPatch'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AllocationResponse'
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - HTTPBearer: []
components:
  schemas:
    AllocationExtPatch:
      additionalProperties: false
      example:
        ext: {}
      properties:
        ext:
          $ref: '#/components/schemas/DeveloperAllocationExt'
      required:
        - ext
      title: AllocationExtPatch
      type: object
    AllocationResponse:
      description: Response schema for allocation mutations (create/update).
      properties:
        created_at:
          format: date-time
          title: Created At
          type: string
        ext:
          $ref: '#/components/schemas/AllocationExt'
          default:
            ad_log_tracking_mode: on_ad_response
            deferred_native_rendering: false
            deferred_native_template: ''
            frequency_capping:
              enabled: 0
              limit_multiple_click: 0
              limit_user_impression:
                - limit_count: 0
                  num_time_units: 0
                  time_unit: day
            supported_environments:
              - web
              - app
          description: for various configuration
        id:
          anyOf:
            - format: uuid
              type: string
            - type: 'null'
          title: Id
        last_comment:
          default: ''
          description: Last comment
          title: Last Comment
          type: string
        'no':
          default: 0
          description: ID of the allocation
          title: 'No'
          type: integer
        owner_id:
          description: Owner ID
          format: uuid
          title: Owner Id
          type: string
        rid:
          description: Resource ID (line_items.id or recommendation_policies.id)
          format: uuid
          title: Rid
          type: string
        rtype:
          $ref: '#/components/schemas/AllocationResourceType'
          description: >-
            Resource type allocated to the target (line_item /
            recommendation_policy)
        status:
          $ref: '#/components/schemas/AllocationStatus'
          default: pending
          description: >-
            The current status of the allocation (e.g. pending, published,
            rejected)
        tid:
          description: Target ID (ad_units.id or placements.id)
          format: uuid
          title: Tid
          type: string
        ttype:
          $ref: '#/components/schemas/TargetType'
          description: Target type (ad_unit / placement)
        updated_at:
          format: date-time
          title: Updated At
          type: string
      required:
        - created_at
        - updated_at
        - owner_id
        - rid
        - rtype
        - tid
        - ttype
      title: AllocationResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    DeveloperAllocationExt:
      additionalProperties: false
      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: DeveloperAllocationExt
      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
    AllocationResourceType:
      enum:
        - line_item
        - recommendation_policy
      title: AllocationResourceType
      type: string
    AllocationStatus:
      enum:
        - pending
        - requested
        - published
        - rejected
        - canceled
        - finished
      title: AllocationStatus
      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'
        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
    EnvironmentType:
      enum:
        - web
        - app
      title: EnvironmentType
      type: string
    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
    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:
        - 'No'
        - 'Yes'
      title: IsComplete
      type: string
    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:
        - 'No'
        - 'Yes'
      title: IsPayment
      type: string
  securitySchemes:
    HTTPBearer:
      description: >-
        Bearer authentication. Pass the access token in the `Authorization:
        Bearer <token>` header.
      scheme: bearer
      type: http

````