---
title: "ExpressionCondition"
url: "https://earlyaccess.developers.bynder.com/apis/automation-workflow-api-1/versions/428d2b99-ec99-455a-8d22-c0d61a9bb810/schemas/ExpressionCondition"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/automation-workflow-api-1/versions/428d2b99-ec99-455a-8d22-c0d61a9bb810.md

# ExpressionCondition

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Automation Workflow API
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}/api/1/automation-workflow/
components:
  schemas:
    Term:
      oneOf:
        - $ref: "#/components/schemas/ArchiveTerm"
        - $ref: "#/components/schemas/AssetTypeTerm"
        - $ref: "#/components/schemas/MetapropertyOptionTerm"
      title: Term
    ArchiveTerm:
      properties:
        offset_amount:
          format: int32
          type: integer
        offset_unit:
          type: string
      required:
        - offset_amount
        - offset_unit
      title: ArchiveTerm
      type: object
    AssetTypeTerm:
      properties:
        asset_type:
          type: string
      required:
        - asset_type
      title: AssetTypeTerm
      type: object
    MetapropertyOptionTerm:
      properties:
        metaproperty_id:
          format: uuid
          type: string
        metaproperty_option_id:
          format: uuid
          type: string
      required:
        - metaproperty_id
      title: MetapropertyOptionTerm
      type: object
    ExpressionCondition:
      properties:
        operator:
          type: string
        term:
          items:
            $ref: "#/components/schemas/Term"
          type: array
      required:
        - operator
      title: ExpressionCondition
      type: object
```
