# social.mackinac.actor.profile

> Published by [mackinac.social](https://lexicon.garden/identity/did:plc:4mbbqw5stoosemcqf66wmrcd)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:4mbbqw5stoosemcqf66wmrcd/social.mackinac.actor.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4mbbqw5stoosemcqf66wmrcd/social.mackinac.actor.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4mbbqw5stoosemcqf66wmrcd/social.mackinac.actor.profile/examples)

## Definitions

### `social.mackinac.actor.profile#link`

**Type**: `object`

A linked external account

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `icon` | `string` | Yes | Icon identifier for the linked account |
| `link` | `string` (uri) | Yes | URL to the linked account |
| `name` | `string` | Yes | Display name of the linked account |
| `order` | `integer` | Yes | Sort order for displaying linked accounts (lower numbers appear first) |

### `social.mackinac.actor.profile`

**Type**: `record`

Mackinac extended profile. Supplements app.bsky.actor.profile with additional fields.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `links` | `array` | No | Linked external accounts |
| `website` | `string` (uri) | No | Personal website URL |
| `headline` | `string` | No | Short headline for the profile |
| `location` | `string` | No | Location or city |
| `description` | `string` | No | Extended bio content |

## Raw Schema

```json
{
  "id": "social.mackinac.actor.profile",
  "defs": {
    "link": {
      "type": "object",
      "required": [
        "icon",
        "name",
        "link",
        "order"
      ],
      "properties": {
        "icon": {
          "type": "string",
          "maxLength": 64,
          "description": "Icon identifier for the linked account"
        },
        "link": {
          "type": "string",
          "format": "uri",
          "maxLength": 2048,
          "description": "URL to the linked account"
        },
        "name": {
          "type": "string",
          "maxLength": 256,
          "description": "Display name of the linked account"
        },
        "order": {
          "type": "integer",
          "minimum": 0,
          "description": "Sort order for displaying linked accounts (lower numbers appear first)"
        }
      },
      "description": "A linked external account"
    },
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "properties": {
          "links": {
            "type": "array",
            "items": {
              "ref": "#link",
              "type": "ref"
            },
            "maxLength": 20,
            "description": "Linked external accounts"
          },
          "website": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048,
            "description": "Personal website URL"
          },
          "headline": {
            "type": "string",
            "maxLength": 256,
            "description": "Short headline for the profile"
          },
          "location": {
            "type": "string",
            "maxLength": 256,
            "description": "Location or city"
          },
          "description": {
            "type": "string",
            "maxLength": 10000,
            "description": "Extended bio content"
          }
        }
      },
      "description": "Mackinac extended profile. Supplements app.bsky.actor.profile with additional fields."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
