---
title: "FullAutomation"
url: "https://earlyaccess.developers.bynder.com/apis/automations-api-1/versions/c7c13882-9e51-4554-bcb8-9517eda44741/schemas/FullAutomation"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/automations-api-1/versions/c7c13882-9e51-4554-bcb8-9517eda44741.md

# FullAutomation

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Automations API
  version: "1.0"
servers:
  - url: https://{your-bynder-domain}/
components:
  schemas:
    FullAutomation:
      properties:
        actionType:
          enum:
            - SHOW_OPTION
            - SHOW_METAPROPERTY
            - PREFILL
            - EMPTY
            - SELECT
            - DESELECT
          type: string
        actionsOn:
          items:
            properties:
              metapropertyId:
                type: string
              metapropertyName:
                type: string
              metapropertyType:
                type: string
              options:
                items:
                  properties:
                    optionId:
                      type: string
                    optionName:
                      type: string
                  required:
                    - optionId
                    - optionName
                  type: object
                type: array
              value:
                type: string
            type: object
          type: array
        automationId:
          type: string
        conditionType:
          enum:
            - ALL
            - ANY
            - ANY_OPTION
          type: string
        triggerType:
          enum:
            - SELECTED
          type: string
        triggersOn:
          items:
            properties:
              metapropertyId:
                type: string
              metapropertyName:
                type: string
              metapropertyType:
                type: string
              options:
                items:
                  properties:
                    optionId:
                      type: string
                    optionName:
                      type: string
                  required:
                    - optionId
                    - optionName
                  type: object
                type: array
              value:
                type: string
            type: object
          type: array
      required:
        - automationId
        - actionType
        - conditionType
        - triggerType
      type: object
```
