# GoogleLabelComparison Object

## Description

Comparison for Google labels.

## Properties

### compareType

Comparison to use.

Type: `string`

Valid Values:

* `contains`
* `does-not-contain`
* `does-not-end-with`
* `does-not-equal`
* `does-not-exist`
* `does-not-start-with`
* `ends-with`
* `equals`
* `exists`
* `starts-with`

Required: Yes

### labelKey

Key of the label.

Type: `string`

Required: Yes

### labelValue

Value of the label to compare. Required when `compareType` is not `exists` and `does-not-exist`.

Type: `string`

Required: Conditional

## Sample JSON

```javascript
{
    "labelKey": "start-schedule",
    "compareType": "equals",
    "labelValue": "daily-0800"
}
```
