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

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

# AssetVersion

## 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:
    AssetVersionDerivative:
      properties:
        derivativeReferenceId:
          type: string
        derivativeType:
          $ref: "#/components/schemas/DerivativeType"
        file:
          $ref: "#/components/schemas/DerivativeFileObject"
        id:
          type: string
        isPublic:
          type: boolean
        name:
          type: string
      title: AssetVersionDerivative
      type: object
    FileObject:
      properties:
        fileName:
          type: string
        fileSize:
          format: int64
          type: integer
        fileType:
          type: string
        id:
          type: string
        md5:
          type: string
        metadata:
          properties:
            key:
              type: string
            value:
              type: string
          type: object
      title: FileObject
      type: object
    DerivativeType:
      enum:
        - additional
        - intermediate
        - manual
        - thumbnail
        - web
      title: DerivativeType
      type: string
    DerivativeFileObject:
      properties:
        fileName:
          type: string
        fileSize:
          format: int64
          type: integer
        fileType:
          type: string
        id:
          type: string
      title: DerivativeFileObject
      type: object
    AssetVersion:
      properties:
        assetId:
          type: string
        assetVersionStatus:
          type: string
        derivatives:
          items:
            $ref: "#/components/schemas/AssetVersionDerivative"
          type: array
        fileObject:
          $ref: "#/components/schemas/FileObject"
        id:
          type: string
        portalId:
          type: string
        timeStampCreated:
          format: date-time
          type: string
        timeStampModified:
          format: date-time
          type: string
        userCreatedId:
          type: string
        userModifiedId:
          type: string
      title: AssetVersion
      type: object
```
