# app.chavatar.schedules

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

✓ This is the authoritative definition for this NSID.

## Description

Rotation schedules with optional activation timing, stored separately from rotation settings.

## Links

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

## Definitions

### `app.chavatar.schedules`

**Type**: `record`

The collection of rotation schedules defined by a user.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `schedules` | `array` | Yes | Ordered list of rotation schedules. Active schedule is selected by kind specificity: timed(2) > period(1) > default(0). Ties broken lexicographically by id. |
| `updatedAt` | `string` (datetime) | Yes | The timestamp when this record was last updated. |

## Raw Schema

```json
{
  "id": "app.chavatar.schedules",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "schedules",
          "updatedAt"
        ],
        "properties": {
          "schedules": {
            "type": "array",
            "items": {
              "ref": "app.chavatar.settings#rotationSchedule",
              "type": "ref"
            },
            "description": "Ordered list of rotation schedules. Active schedule is selected by kind specificity: timed(2) > period(1) > default(0). Ties broken lexicographically by id."
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "description": "The timestamp when this record was last updated."
          }
        }
      },
      "description": "The collection of rotation schedules defined by a user."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Rotation schedules with optional activation timing, stored separately from rotation settings."
}
```
