app.chavatar.settings

chavatar.app

Documentation

Rotation configuration for a user.

main record

Rotation configuration for a user.

Record Key literal:self Fixed literal value

Properties

avatars array of ref #avatarItem Required

No description available.

enabled boolean Required

No description available.

interval string Required

No description available.

maxLength: 6 bytes
Known values: 1h, 3h, 6h, 12h, 1d, 1w, 1mo
mode string Required

No description available.

maxLength: 20 bytes
Known values: sequential, random
View raw schema
{
  "key": "literal:self",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "enabled",
      "interval",
      "mode",
      "avatars"
    ],
    "properties": {
      "mode": {
        "type": "string",
        "maxLength": 20,
        "knownValues": [
          "sequential",
          "random"
        ]
      },
      "avatars": {
        "type": "array",
        "items": {
          "ref": "#avatarItem",
          "type": "ref"
        }
      },
      "enabled": {
        "type": "boolean"
      },
      "interval": {
        "type": "string",
        "maxLength": 6,
        "knownValues": [
          "1h",
          "3h",
          "6h",
          "12h",
          "1d",
          "1w",
          "1mo"
        ]
      }
    }
  },
  "description": "Rotation configuration for a user."
}
avatarItem object

No description available.

Properties

id string Required

No description available.

maxLength: 13 bytes
View raw schema
{
  "type": "object",
  "required": [
    "id",
    "image"
  ],
  "properties": {
    "id": {
      "type": "string",
      "maxLength": 13
    },
    "image": {
      "ref": "com.atproto.repo.strongRef",
      "type": "ref"
    }
  }
}

Lexicon Garden

@