> For the complete documentation index, see [llms.txt](https://docs.skeddly.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.skeddly.com/data-types/resourcetagcomparison-object.md).

# 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"
}
```
