---
title: "Asset"
url: "https://earlyaccess.developers.bynder.com/apis/asset-api-beta-1/versions/d41a5f27-191a-4019-9419-fe0a53e55978/schemas/Asset"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/asset-api-beta-1/versions/d41a5f27-191a-4019-9419-fe0a53e55978.md

# Asset

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Asset API (Beta)
  version: 1.0.0-beta
servers:
  - url: https://{your-bynder-domain}/
components:
  schemas:
    VersionReference:
      properties:
        timeStampCreated:
          format: date-time
          type: string
        versionId:
          type: string
      title: VersionReference
      type: object
    AdvancedRights:
      properties:
        isDownloadable:
          type: boolean
        isPublic:
          type: boolean
      title: AdvancedRights
      type: object
    AssetEmbargo:
      properties:
        embargoId:
          type: string
        embargoType:
          $ref: "#/components/schemas/AssetEmbargoType"
        timestampEnd:
          format: date-time
          type: string
        timestampStart:
          format: date-time
          type: string
      title: AssetEmbargo
      type: object
    AssetModuleCode:
      enum:
        - BG
        - BS
        - IB
        - WF
      title: AssetModuleCode
      type: string
    AssetEmbargoType:
      enum:
        - archive
        - limited
        - watermark
      title: AssetEmbargoType
      type: string
    Asset:
      properties:
        activeVersion:
          $ref: "#/components/schemas/VersionReference"
        advancedRights:
          $ref: "#/components/schemas/AdvancedRights"
        assetId:
          type: string
        assetStatus:
          type: string
        copyright:
          type: string
        description:
          type: string
        embargos:
          items:
            $ref: "#/components/schemas/AssetEmbargo"
          type: array
        moduleCode:
          $ref: "#/components/schemas/AssetModuleCode"
        name:
          type: string
        origin:
          type: string
        portalId:
          type: string
        timeStampCreated:
          format: date-time
          type: string
        timeStampModified:
          format: date-time
          type: string
        timeStampPublished:
          format: date-time
          type: string
        userCreatedId:
          type: string
        userModifiedId:
          type: string
      title: Asset
      type: object
```
