# com.babesky.actor.links

> Published by [babesky.com](https://lexicon.garden/identity/did:plc:qtapiembzpxlzsiagnc7eyy3)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:qtapiembzpxlzsiagnc7eyy3/com.babesky.actor.links)
- [Documentation](https://lexicon.garden/lexicon/did:plc:qtapiembzpxlzsiagnc7eyy3/com.babesky.actor.links/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:qtapiembzpxlzsiagnc7eyy3/com.babesky.actor.links/examples)

## Definitions

### `com.babesky.actor.links`

**Type**: `record`

A creator's content platform links, stored in their AT Protocol repository. Written by Babesky on behalf of users who opt in.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `links` | `array` | Yes | Ordered list of platform links. Up to 20 entries. |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "com.babesky.actor.links",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "links",
          "createdAt"
        ],
        "properties": {
          "links": {
            "type": "array",
            "items": {
              "ref": "com.babesky.actor.defs#platformLink",
              "type": "ref"
            },
            "maxLength": 20,
            "description": "Ordered list of platform links. Up to 20 entries."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A creator's content platform links, stored in their AT Protocol repository. Written by Babesky on behalf of users who opt in."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
