# app.chavatar.settings.executor

> Published by [chavatar.app](https://lexicon.garden/identity/did:web:chavatar.app)

✓ This is the authoritative definition for this NSID.

## Description

Designated Cron executor for avatar rotation.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:chavatar.app/app.chavatar.settings.executor)
- [Documentation](https://lexicon.garden/lexicon/did:web:chavatar.app/app.chavatar.settings.executor/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:chavatar.app/app.chavatar.settings.executor/examples)

## Definitions

### `app.chavatar.settings.executor`

**Type**: `record`

The provider authorized to execute avatar rotation on behalf of the user.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `execClientId` | `string` (uri) | Yes | OAuth client_id of the provider authorized to execute rotation. |

## Raw Schema

```json
{
  "id": "app.chavatar.settings.executor",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "execClientId"
        ],
        "properties": {
          "execClientId": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048,
            "description": "OAuth client_id of the provider authorized to execute rotation."
          }
        }
      },
      "description": "The provider authorized to execute avatar rotation on behalf of the user."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Designated Cron executor for avatar rotation."
}
```
