---
title: "PaginatedMetapropertiesResponse"
url: "https://earlyaccess.developers.bynder.com/apis/metaproperty-1/versions/e015c0a3-e9ae-46ee-9a70-047f982dcfe9/schemas/PaginatedMetapropertiesResponse"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/metaproperty-1/versions/e015c0a3-e9ae-46ee-9a70-047f982dcfe9.md

# PaginatedMetapropertiesResponse

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Metaproperty
  version: "1.0"
servers:
  - url: https://{your-bynder-domain}
components:
  schemas:
    PaginatedMetapropertiesResponse:
      properties:
        metadata:
          properties:
            nextPage:
              type: string
            totalCount:
              format: int64
              type: integer
          required:
            - nextPage
            - totalCount
          title: PaginationMetadata
          type: object
        metaproperties:
          items:
            properties:
              allowDuplicates:
                type: boolean
              autocomplete:
                type: boolean
              createDuringApply:
                type: boolean
              definition:
                type: string
              id:
                type: string
              metapropertyType:
                enum:
                  - single-select
                  - multi-select
                  - date
                  - text
                title: MetapropertyTypeEnum
                type: string
              name:
                type: string
            required:
              - id
              - name
              - metapropertyType
              - createDuringApply
              - autocomplete
              - allowDuplicates
            title: Metaproperty
            type: object
          type: array
      required:
        - metadata
      title: PaginatedMetapropertiesResponse
      type: object
```
