# Operations (sample payloads)

## Main operations

### Simple Branch

Define branches which do a simple equality check with a test value
**Sample Input**

```json
{
    "value": "apple",
    "branches": [
        \{
            "value": "apple",
            "label": "Fruit Branch"
        \},
        \{
            "value": "carrot",
            "label": "Vegetable Branch"
        \},
        \{
            "value": "chicken",
            "label": "Meat Branch"
        \}
    ]
}
```

**Sample Output**

```json
\{
    "branch_name": "Branch 1",
    "branch_value": "apple",
    "branch_label": "Fruit Branch"
\}
```
