---
title: "ListOptionsOutput"
url: "https://earlyaccess.developers.bynder.com/apis/dependencies-for-metaproperties-and-options-1/versions/93f6af18-64b3-4b53-b2d7-016f8c7b9b97/schemas/ListOptionsOutput"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/dependencies-for-metaproperties-and-options-1/versions/93f6af18-64b3-4b53-b2d7-016f8c7b9b97.md

# ListOptionsOutput

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Dependencies for Metaproperties and Options
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}/
components:
  schemas:
    MetadataOutput:
      properties:
        nextPage:
          type: string
        prevPage:
          type: string
      type: object
    MetapropertyOption:
      properties:
        externalReference:
          type: string
        icon:
          type: string
        id:
          type: string
        name:
          type: string
      required:
        - id
        - name
        - externalReference
        - icon
      type: object
    ListOptionsOutput:
      properties:
        metadata:
          $ref: "#/components/schemas/MetadataOutput"
        options:
          items:
            $ref: "#/components/schemas/MetapropertyOption"
          type: array
      required:
        - metadata
        - options
      type: object
```
