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

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

# AssetVersionDerivative

## 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:
    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
    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
```
