---
title: "ListOptionsOutput"
url: "https://earlyaccess.developers.bynder.com/apis/metaproperty-options-1/versions/9b6f896a-c5dd-4f1a-a8e4-591e5ef4f1db/schemas/ListOptionsOutput"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/metaproperty-options-1/versions/9b6f896a-c5dd-4f1a-a8e4-591e5ef4f1db.md

# ListOptionsOutput

## OpenAPI definition

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