Kaltura asset API

The asset API from Kaltura — 9 operation(s) for asset.

Operations 9

POST /service/asset/action/add #
POST /service/asset/action/count #
POST /service/asset/action/delete #
POST /service/asset/action/get #
POST /service/asset/action/getAdsContext #
POST /service/asset/action/getPlaybackContext #
POST /service/asset/action/list #
POST /service/asset/action/removeMetasAndTags #
POST /service/asset/action/update #

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/kaltura-asset-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

kaltura-asset-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: The Kaltura OTT API
  title: Kaltura OTT accessControl Asset API
  version: 3.6.287.20720
servers:
- url: https://tvpapi-us-preprod.ott.kaltura.com/api_v3
- url: http://tvpapi-us-preprod.ott.kaltura.com/api_v3
security:
- ks: []
tags:
- name: asset
paths:
  /service/asset/action/add:
    post:
      description: Add a new asset
      operationId: asset.add
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KalturaAsset'
            text/xml:
              schema:
                $ref: '#/components/schemas/KalturaAsset'
        x-Errors:
          description: '* `AssetStructDoesNotExist`: undefined

            * `InvalidMetaType`: undefined

            * `GeoBlockRuleDoesNotExistForGroup`: undefined

            * `InvalidValueSentForMeta`: undefined

            * `DeviceRuleDoesNotExistForGroup`: undefined

            * `AssetExternalIdMustBeUnique`: undefined'
      tags:
      - asset
      x-kaltura-format: post
      x-kaltura-parameters:
      - asset
      requestBody:
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/OTTRequest'
              properties:
                asset:
                  $ref: '#/components/schemas/KalturaAsset'
              type: object
  /service/asset/action/count:
    post:
      description: Returns a group-by result for media or EPG according to given filter. Lists values of each field and their respective count.
      operationId: asset.count
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KalturaAssetCount'
            text/xml:
              schema:
                $ref: '#/components/schemas/KalturaAssetCount'
      tags:
      - asset
      x-kaltura-format: post
      x-kaltura-parameters:
      - filter
      requestBody:
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/OTTRequest'
              properties:
                filter:
                  $ref: '#/components/schemas/KalturaSearchAssetFilter'
              type: object
  /service/asset/action/delete:
    post:
      description: Delete an existing asset
      operationId: asset.delete
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: boolean
            text/xml:
              schema:
                type: boolean
        x-Errors:
          description: '* `AssetDoesNotExist`: undefined'
      tags:
      - asset
      x-kaltura-format: post
      x-kaltura-parameters:
      - id
      - assetReferenceType
      requestBody:
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/OTTRequest'
              properties:
                assetReferenceType:
                  enum:
                  - media
                  - epg_internal
                  - epg_external
                  type: string
                  x-enumLabels:
                  - MEDIA
                  - EPG_INTERNAL
                  - EPG_EXTERNAL
                  x-enumType: KalturaAssetReferenceType
                id:
                  type: integer
              type: object
  /service/asset/action/get:
    post:
      description: Returns media or EPG asset by media / EPG internal or external identifier
      operationId: asset.get
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KalturaAsset'
            text/xml:
              schema:
                $ref: '#/components/schemas/KalturaAsset'
        x-Errors:
          description: '* `500007`'
      tags:
      - asset
      x-kaltura-format: post
      x-kaltura-parameters:
      - id
      - assetReferenceType
      requestBody:
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/OTTRequest'
              properties:
                assetReferenceType:
                  enum:
                  - media
                  - epg_internal
                  - epg_external
                  type: string
                  x-enumLabels:
                  - MEDIA
                  - EPG_INTERNAL
                  - EPG_EXTERNAL
                  x-enumType: KalturaAssetReferenceType
                id:
                  type: string
                  x-dynamicEnum:
                    array: objects
                    label: id
                    method: post
                    path: /service/asset/action/list
                    value: id
              type: object
  /service/asset/action/getAdsContext:
    post:
      description: Returns the data for ads control
      operationId: asset.getAdsContext
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KalturaAdsContext'
            text/xml:
              schema:
                $ref: '#/components/schemas/KalturaAdsContext'
        x-Errors:
          description: '* `RecordingStatusNotValid`: undefined

            * `RecordingPlaybackNotAllowedForNonExistingEpgChannel`: undefined

            * `RecordingNotFound`: undefined

            * `ProgramDoesntExist`: undefined

            * `DeviceNotInDomain`: undefined

            * `ServiceNotAllowed`: undefined

            * `NotEntitled`: undefined

            * `RecordingPlaybackNotAllowedForNotEntitledEpgChannel`: undefined'
      tags:
      - asset
      x-kaltura-format: post
      x-kaltura-parameters:
      - assetId
      - assetType
      - contextDataParams
      requestBody:
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/OTTRequest'
              properties:
                assetId:
                  type: string
                assetType:
                  enum:
                  - media
                  - recording
                  - epg
                  type: string
                  x-enumLabels:
                  - MEDIA
                  - RECORDING
                  - EPG
                  x-enumType: KalturaAssetType
                contextDataParams:
                  $ref: '#/components/schemas/KalturaPlaybackContextOptions'
              type: object
  /service/asset/action/getPlaybackContext:
    post:
      description: This action delivers all data relevant for player
      operationId: asset.getPlaybackContext
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KalturaPlaybackContext'
            text/xml:
              schema:
                $ref: '#/components/schemas/KalturaPlaybackContext'
        x-Errors:
          description: '* `ProgramDoesntExist`: undefined

            * `RecordingStatusNotValid`: undefined

            * `RecordingNotFound`: undefined

            * `DeviceNotInDomain`: undefined'
      tags:
      - asset
      x-kaltura-format: post
      x-kaltura-parameters:
      - assetId
      - assetType
      - contextDataParams
      requestBody:
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/OTTRequest'
              properties:
                assetId:
                  type: string
                assetType:
                  enum:
                  - media
                  - recording
                  - epg
                  type: string
                  x-enumLabels:
                  - MEDIA
                  - RECORDING
                  - EPG
                  x-enumType: KalturaAssetType
                contextDataParams:
                  $ref: '#/components/schemas/KalturaPlaybackContextOptions'
              type: object
  /service/asset/action/list:
    post:
      description: Returns media or EPG assets. Filters by media identifiers or by EPG internal or external identifier.
      operationId: asset.list
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KalturaAssetListResponse'
            text/xml:
              schema:
                $ref: '#/components/schemas/KalturaAssetListResponse'
      tags:
      - asset
      x-kaltura-format: post
      x-kaltura-parameters:
      - filter
      - pager
      requestBody:
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/OTTRequest'
              properties:
                filter:
                  $ref: '#/components/schemas/KalturaAssetFilter'
                pager:
                  $ref: '#/components/schemas/KalturaFilterPager'
              type: object
  /service/asset/action/removeMetasAndTags:
    post:
      description: remove metas and tags from asset
      operationId: asset.removeMetasAndTags
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: boolean
            text/xml:
              schema:
                type: boolean
        x-Errors:
          description: '* `AssetDoesNotExist`: undefined

            * `CanNotRemoveBasicMetaIds`: undefined'
      tags:
      - asset
      x-kaltura-format: post
      x-kaltura-parameters:
      - id
      - assetReferenceType
      - idIn
      requestBody:
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/OTTRequest'
              properties:
                assetReferenceType:
                  enum:
                  - media
                  - epg_internal
                  - epg_external
                  type: string
                  x-enumLabels:
                  - MEDIA
                  - EPG_INTERNAL
                  - EPG_EXTERNAL
                  x-enumType: KalturaAssetReferenceType
                id:
                  type: integer
                idIn:
                  type: string
              type: object
  /service/asset/action/update:
    post:
      description: update an existing asset
      operationId: asset.update
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KalturaAsset'
            text/xml:
              schema:
                $ref: '#/components/schemas/KalturaAsset'
        x-Errors:
          description: '* `AssetDoesNotExist`: undefined

            * `AssetExternalIdMustBeUnique`: undefined

            * `GeoBlockRuleDoesNotExistForGroup`: undefined

            * `InvalidMetaType`: undefined

            * `DeviceRuleDoesNotExistForGroup`: undefined

            * `InvalidValueSentForMeta`: undefined'
      tags:
      - asset
      x-kaltura-format: post
      x-kaltura-parameters:
      - id
      - asset
      requestBody:
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/OTTRequest'
              properties:
                asset:
                  $ref: '#/components/schemas/KalturaAsset'
                id:
                  type: integer
              type: object
components:
  schemas:
    KalturaPersonalFeedFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      properties:
        orderBy:
          enum:
          - RELEVANCY_DESC
          - NAME_ASC
          - NAME_DESC
          - VIEWS_DESC
          - RATINGS_DESC
          - VOTES_DESC
          - START_DATE_DESC
          - START_DATE_ASC
          type: string
          x-enumLabels:
          - RELEVANCY_DESC
          - NAME_ASC
          - NAME_DESC
          - VIEWS_DESC
          - RATINGS_DESC
          - VOTES_DESC
          - START_DATE_DESC
          - START_DATE_ASC
          x-enumType: KalturaPersonalFeedOrderBy
      title: KalturaPersonalFeedFilter
      type: object
    KalturaSeriesRecordingFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      description: Filtering recordings
      properties:
        orderBy:
          enum:
          - START_DATE_ASC
          - START_DATE_DESC
          - ID_ASC
          - ID_DESC
          - SERIES_ID_ASC
          - SERIES_ID_DESC
          type: string
          x-enumLabels:
          - START_DATE_ASC
          - START_DATE_DESC
          - ID_ASC
          - ID_DESC
          - SERIES_ID_ASC
          - SERIES_ID_DESC
          x-enumType: KalturaSeriesRecordingOrderBy
      title: KalturaSeriesRecordingFilter
      type: object
    KalturaSubscriptionSetFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      properties:
        idIn:
          description: Comma separated identifiers
          type: string
        orderBy:
          enum:
          - NAME_ASC
          - NAME_DESC
          type: string
          x-enumLabels:
          - NAME_ASC
          - NAME_DESC
          x-enumType: KalturaSubscriptionSetOrderBy
        subscriptionIdContains:
          description: Comma separated subscription identifiers
          type: string
        typeEqual:
          description: 'Enum Type: `KalturaSubscriptionSetType`


            Subscription Type'
          enum:
          - SWITCH
          - DEPENDENCY
          type: string
          x-enumLabels:
          - SWITCH
          - DEPENDENCY
          x-enumType: KalturaSubscriptionSetType
      title: KalturaSubscriptionSetFilter
      type: object
    KalturaFollowTvSeriesFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      properties:
        orderBy:
          enum:
          - START_DATE_DESC
          - START_DATE_ASC
          type: string
          x-enumLabels:
          - START_DATE_DESC
          - START_DATE_ASC
          x-enumType: KalturaFollowTvSeriesOrderBy
      title: KalturaFollowTvSeriesFilter
      type: object
    KalturaAssetReminderFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaReminderFilter'
      properties:
        orderBy:
          enum:
          - RELEVANCY_DESC
          - NAME_ASC
          - NAME_DESC
          - VIEWS_DESC
          - RATINGS_DESC
          - VOTES_DESC
          - START_DATE_DESC
          - START_DATE_ASC
          - LIKES_DESC
          type: string
          x-enumLabels:
          - RELEVANCY_DESC
          - NAME_ASC
          - NAME_DESC
          - VIEWS_DESC
          - RATINGS_DESC
          - VOTES_DESC
          - START_DATE_DESC
          - START_DATE_ASC
          - LIKES_DESC
          x-enumType: KalturaAssetReminderOrderBy
      title: KalturaAssetReminderFilter
      type: object
    KalturaMediaImage:
      description: Image details
      properties:
        height:
          description: Image height
          type: integer
        id:
          description: '`readOnly`


            Image ID'
          readOnly: true
          type: string
        isDefault:
          description: Determined whether image was taken from default configuration or not
          type: boolean
        ratio:
          description: Image aspect ratio
          type: string
        url:
          description: Image URL
          type: string
        version:
          description: Image Version
          type: integer
        width:
          description: Image width
          type: integer
      title: KalturaMediaImage
      type: object
    KalturaAccessControlMessage:
      properties:
        code:
          description: Code
          type: string
        message:
          description: Message
          type: string
      title: KalturaAccessControlMessage
      type: object
    KalturaPlaybackContext:
      properties:
        actions:
          items:
            $ref: '#/components/schemas/KalturaRuleAction'
          type: array
        messages:
          items:
            $ref: '#/components/schemas/KalturaAccessControlMessage'
          type: array
        sources:
          items:
            $ref: '#/components/schemas/KalturaPlaybackSource'
          type: array
      title: KalturaPlaybackContext
      type: object
    KalturaDoubleValue:
      allOf:
      - $ref: '#/components/schemas/KalturaValue'
      description: A string representation to return an array of doubles
      properties:
        value:
          description: Value
          type: number
      title: KalturaDoubleValue
      type: object
    OTTRequest:
      properties:
        ks:
          type: string
        version:
          default: 3.6.287.20720
          type: string
      type: object
    KalturaMultilingualStringValue:
      allOf:
      - $ref: '#/components/schemas/KalturaValue'
      description: Array of translated strings
      properties:
        multilingualValue:
          items:
            $ref: '#/components/schemas/KalturaTranslationToken'
          type: array
        value:
          description: Value
          type: string
      title: KalturaMultilingualStringValue
      type: object
    KalturaHouseholdUserFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      properties:
        householdIdEqual:
          description: The identifier of the household
          type: integer
        orderBy:
          enum:
          - NONE
          type: string
          x-enumLabels:
          - NONE
          x-enumType: KalturaHouseholdUserOrderBy
      title: KalturaHouseholdUserFilter
      type: object
    KalturaValue:
      description: '`abstract`


        A representation to return an array of values'
      discriminator:
        propertyName: objectType
      oneOf:
      - $ref: '#/components/schemas/KalturaIntegerValue'
      - $ref: '#/components/schemas/KalturaMultilingualStringValue'
      - $ref: '#/components/schemas/KalturaLongValue'
      - $ref: '#/components/schemas/KalturaDoubleValue'
      - $ref: '#/components/schemas/KalturaBooleanValue'
      - $ref: '#/components/schemas/KalturaStringValue'
      properties:
        description:
          description: Description
          type: string
        objectType:
          enum:
          - KalturaIntegerValue
          - KalturaMultilingualStringValue
          - KalturaLongValue
          - KalturaDoubleValue
          - KalturaBooleanValue
          - KalturaStringValue
          type: string
      title: KalturaValue
      type: object
    KalturaIntegerValue:
      allOf:
      - $ref: '#/components/schemas/KalturaValue'
      description: A string representation to return an array of ints
      properties:
        value:
          description: Value
          type: integer
      title: KalturaIntegerValue
      type: object
    KalturaAggregationCountFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaRelatedObjectFilter'
      description: Kaltura Aggregation CountFilter
      properties:
        orderBy:
          enum:
          - NONE
          type: string
          x-enumLabels:
          - NONE
          x-enumType: KalturaAggregationCountOrderBy
      title: KalturaAggregationCountFilter
      type: object
    KalturaCollectionFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      description: Collection Filter
      properties:
        collectionIdIn:
          description: Comma separated collection IDs
          type: string
        mediaFileIdEqual:
          description: Media-file ID to get the subscriptions by
          type: integer
        orderBy:
          enum:
          - NONE
          type: string
          x-enumLabels:
          - NONE
          x-enumType: KalturaCollectionOrderBy
      title: KalturaCollectionFilter
      type: object
    KalturaPriceDetailsFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      properties:
        idIn:
          description: Comma separated price identifiers
          type: string
        orderBy:
          enum:
          - NAME_ASC
          type: string
          x-enumLabels:
          - NAME_ASC
          x-enumType: KalturaPriceDetailsOrderBy
      title: KalturaPriceDetailsFilter
      type: object
    KalturaImageFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      properties:
        idIn:
          description: IDs to filter by
          type: string
        imageObjectIdEqual:
          description: ID of the object the is related to, to filter by
          type: integer
        imageObjectTypeEqual:
          description: 'Enum Type: `KalturaImageObjectType`


            Type of the object the image is related to, to filter by'
          enum:
          - MEDIA_ASSET
          - PROGRAM_ASSET
          - CHANNEL
          - CATEGORY
          - PARTNER
          - IMAGE_TYPE
          type: string
          x-enumLabels:
          - MEDIA_ASSET
          - PROGRAM_ASSET
          - CHANNEL
          - CATEGORY
          - PARTNER
          - IMAGE_TYPE
          x-enumType: KalturaImageObjectType
        isDefaultEqual:
          description: Filter images that are default on atleast on image type or not default at any
          type: boolean
        orderBy:
          enum:
          - NONE
          type: string
          x-enumLabels:
          - NONE
          x-enumType: KalturaImageOrderBy
      title: KalturaImageFilter
      type: object
    KalturaParentalRuleFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      properties:
        entityReferenceEqual:
          description: 'Enum Type: `KalturaEntityReferenceBy`


            Reference type to filter by'
          enum:
          - user
          - household
          type: string
          x-enumLabels:
          - USER
          - HOUSEHOLD
          x-enumType: KalturaEntityReferenceBy
        orderBy:
          enum:
          - PARTNER_SORT_VALUE
          type: string
          x-enumLabels:
          - PARTNER_SORT_VALUE
          x-enumType: KalturaParentalRuleOrderBy
      title: KalturaParentalRuleFilter
      type: object
    KalturaAnnouncementFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      description: order announcements
      properties:
        orderBy:
          enum:
          - NONE
          type: string
          x-enumLabels:
          - NONE
          x-enumType: KalturaAnnouncementOrderBy
      title: KalturaAnnouncementFilter
      type: object
    KalturaBaseSearchAssetFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaAssetFilter'
      description: '`abstract`'
      discriminator:
        propertyName: objectType
      oneOf:
      - $ref: '#/components/schemas/KalturaRelatedFilter'
      - $ref: '#/components/schemas/KalturaSearchAssetFilter'
      properties:
        groupBy:
          items:
            $ref: '#/components/schemas/KalturaAssetGroupBy'
          type: array
        objectType:
          enum:
          - KalturaRelatedFilter
          - KalturaSearchAssetFilter
          type: string
      title: KalturaBaseSearchAssetFilter
      type: object
    KalturaFavoriteFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      description: Favorite request filter
      properties:
        mediaIdIn:
          description: Media identifiers from which to filter the favorite assets
          type: string
        mediaTypeEqual:
          description: Media type to filter by the favorite assets
          type: integer
        orderBy:
          enum:
          - CREATE_DATE_ASC
          - CREATE_DATE_DESC
          type: string
          x-enumLabels:
          - CREATE_DATE_ASC
          - CREATE_DATE_DESC
          x-enumType: KalturaFavoriteOrderBy
        udidEqualCurrent:
          description: Indicates whether the results should be filtered by origin UDID using the current
          type: boolean
      title: KalturaFavoriteFilter
      type: object
    KalturaPersistedFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      description: '`abstract`'
      discriminator:
        propertyName: objectType
      oneOf:
      - $ref: '#/components/schemas/KalturaAssetFilter'
      properties:
        name:
          description: Name for the presisted filter. If empty, no action will be done. If has value, the filter will be saved and persisted in user's search history.
          type: string
        objectType:
          enum:
          - KalturaAssetFilter
          type: string
      title: KalturaPersistedFilter
      type: object
    KalturaMetaFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      description: Meta filter
      properties:
        assetStructIdEqual:
          description: Filter Metas that are contained in a specific asset struct
          type: integer
        dataTypeEqual:
          description: 'Enum Type: `KalturaMetaDataType`


            Meta data type to filter by'
          enum:
          - STRING
          - MULTILINGUAL_STRING
          - NUMBER
          - BOOLEAN
          - DATE
          type: string
          x-enumLabels:
          - STRING
          - MULTILINGUAL_STRING
          - NUMBER
          - BOOLEAN
          - DATE
          x-enumType: KalturaMetaDataType
        idIn:
          description: Comma separated identifiers
          type: string
        multipleValueEqual:
          description: Filter metas by multipleValueEqual value
          type: boolean
        orderBy:
          enum:
          - NAME_ASC
          - NAME_DESC
          - SYSTEM_NAME_ASC
          - SYSTEM_NAME_DESC
          - CREATE_DATE_ASC
          - CREATE_DATE_DESC
          - UPDATE_DATE_ASC
          - UPDATE_DATE_DESC
          type: string
          x-enumLabels:
          - NAME_ASC
          - NAME_DESC
          - SYSTEM_NAME_ASC
          - SYSTEM_NAME_DESC
          - CREATE_DATE_ASC
          - CREATE_DATE_DESC
          - UPDATE_DATE_ASC
          - UPDATE_DATE_DESC
          x-enumType: KalturaMetaOrderBy
      title: KalturaMetaFilter
      type: object
    KalturaSearchHistoryFilter:
      allOf:
      - $ref: '#/components/schemas/KalturaFilter'
      properties:
        orderBy:
          enum:
          - NONE
          type: string
          x-enumLabels:
          - NONE
          x-enumType: KalturaSearchHistoryOrderBy
      title: KalturaSearchHistoryFilter
      type: object
    KalturaFilter:
      description: '`abstract`'
      discriminator:
        propertyName: objectType
      oneOf:
      - $ref: '#/components/schemas/KalturaRelatedObjectFilter'
      - $ref: '#/components/schemas/KalturaChannelsFilter'
      - $ref: '#/components/schemas/KalturaMediaFileFilter'
      - $ref: '#/components/schemas/KalturaImageFilter'
      - $ref: '#/components/schemas/KalturaImageTypeFilter'
      - $ref: '#/components/schemas/KalturaTagFilter'
      - $ref: '#/components/schemas/KalturaAssetStructFilter'
      - $ref: '#/components/schemas/KalturaCurrencyFilter'
      - $ref: '#/components/schemas/KalturaPersistedFilter'
      - $ref: '#/components/schemas/KalturaCollectionFilter'
      - $ref: '#/components/schemas/KalturaPricePlanFilter'
      - $ref: '#/components/schemas/KalturaPriceDetailsFilter'
      - $ref: '#/components/schemas/KalturaSubscriptionSetFilter'
      - $ref: '#/components/schemas/KalturaLanguageFilter'
      - $ref: '#/components/schemas/KalturaMetaFilter'
      - $ref: '#/components/schemas/KalturaCountryFilter'
      - $ref: '#/components/schemas/KalturaSearchHistoryFilter'
      - $ref: '#/components/schemas/KalturaConfigurationsFilter'
      - $ref: '#/components/schemas/KalturaReportFilter'
      - $ref: '#/components/schemas/KalturaConfigurationGroupTagFilter'
      - $ref: '#/components/schemas/KalturaConfigurationGroupDeviceFilter'
      - $ref: '#/components/schemas/KalturaHouseholdDeviceFilter'
      - $ref: '#/components/schemas/KalturaRegionFilter'
      - $ref: '#/components/schemas/KalturaUserAssetRuleFilter'
      - $ref: '#/components/schemas/KalturaParentalRuleFilter'
      - $ref: '#/components/schemas/KalturaExportTaskFilter'
      - $ref: '#/components/schemas/KalturaAssetCommentFilter'
      - $ref: '#/components/schemas/KalturaBookmarkFilter'
      - $ref: '#/components/schemas/KalturaSeriesRecordingFilter'
      - $ref: '#/components/schemas/KalturaProductPriceFilter'
      - $ref: '#/components/schemas/KalturaEntitlementFilter'
      - $ref: '#/components/schemas/KalturaTransactionHistoryFilter'
      - $ref: '#/components/schemas/KalturaUserRoleFilter'
      - $ref: '#/components/schemas/KalturaPaymentMethodProfileFilter'
      - $ref: '#/components/schemas/KalturaAssetHistoryFilter'
      - $ref: '#/components/schemas/KalturaRecordingContextFilter'
      - $ref: '#/components/schemas/KalturaRecordingFilter'
      - $ref: '#/components/schemas/KalturaHouseholdUserFilter'
      - $ref: '#/components/schemas/KalturaEngagementFilter'
      - $ref: '#/components/schemas/KalturaReminderFilter'
      - $ref: '#/components/schemas/KalturaFollowTvSeriesFilter'
      - $ref: '#/components/schemas/KalturaInboxMessageFilter'
      - $ref: '#/components/schemas/KalturaAnnouncementFilter'
      - $ref: '#/components/schemas/KalturaPersonalFeedFilter'
      - $ref: '#/components/schemas/KalturaTopicFilter'
      - $ref: '#/components/schemas/KalturaSubscriptionFilter'
      - $ref: '#/components/schemas/KalturaSocialCommentFilter'
      - $ref: '#/components/schemas/KalturaSocialFriendActivityFilter'
      - $ref: '#/components/schemas/KalturaSocialActionFilter'
      - $ref: '#/components/schemas/KalturaFavoriteFilter'
      - $ref: '#/components/schemas/KalturaOTTUserFilter'
      properties:
        objectType:
          enum:
          - KalturaRelatedObjectFilter
          - KalturaChannelsFilter
          - KalturaMediaFileFilter
          - KalturaImageFilter
          - KalturaImageTypeFilter
          - KalturaTagFilter
          - KalturaAssetStructFilter
          - KalturaCurrencyFilter
          - KalturaPersistedFilter
          - KalturaCollectionFilter
          - KalturaPricePlanFilter
          - KalturaPriceDetailsFilter
          - KalturaSubscriptionSetFilter
          - KalturaLanguageFilter
          - KalturaMetaFilter
          - KalturaCountryFilter
          - KalturaSearchHistoryFilter
          - KalturaConfigurationsFilter
          - KalturaReportFilter
          - KalturaConfigurationGroupTagFilter
          - KalturaConfigurationGroupDeviceFilter
          - KalturaHouseholdDeviceFilter
          - KalturaRegionFilter
          - KalturaUserAssetRuleFilter
          - KalturaParentalRuleFilter
          - KalturaExportTaskFilter
          - KalturaAssetCommentFilter
          - KalturaBookmarkFilter
          - KalturaSeriesRecordingFilter
          - KalturaProductPriceFilter
          - KalturaEntitlementFilter
          - KalturaTransactionHistoryFilter
          - KalturaUserRoleFilter
          - KalturaPaymentMethodProfileFilter
          - KalturaAssetHistoryFilter
          - KalturaRecordingContextFilter
          - KalturaRecordingFilter
          - KalturaHouseholdUserFilter
          - KalturaEngagementFilter
          - KalturaReminderFilter
          - KalturaFollowTvSeriesFilter
          - KalturaInboxMessageFilter
          - KalturaAnnouncementFilter
          - KalturaPersonalFeedFilter
          - KalturaTopicFilter
          - KalturaSubscriptionFilter
          - KalturaSocialCommentFilter
          - KalturaSocialFriendActivityFilter
          - KalturaSocialActionFilter
          - KalturaFavoriteFilter
          - KalturaOTTUserFilter
          type: string
        orderBy:
          description: order by
          type: string
      title: KalturaFilter
      type: object
    KalturaDrmPlaybackPluginData:
      allOf:
      - $ref: '#/components/schemas/KalturaPluginData'
      properties:
        licenseURL:
          description: License URL
          type: string
        scheme:
          description: 'Enum Type: `KalturaDrmSchemeName`


            Scheme'
          enum:
          - PLAYREADY_CENC
          - WIDEVINE_CENC
          - FAIRPLAY
          - WIDEVINE
        

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