# work.mattriley.socialLink

> Published by [mattriley.work](https://lexicon.garden/identity/did:plc:g5frjlzwnpjtxlc6chaqbl4o)

## Description

A social profile link displayed on mattriley.work.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:g5frjlzwnpjtxlc6chaqbl4o/work.mattriley.socialLink)
- [Documentation](https://lexicon.garden/lexicon/did:plc:g5frjlzwnpjtxlc6chaqbl4o/work.mattriley.socialLink/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:g5frjlzwnpjtxlc6chaqbl4o/work.mattriley.socialLink/examples)

## Definitions

### `work.mattriley.socialLink`

**Type**: `record`

A social link record for a single profile destination.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | Yes | Absolute URL for the social profile. |
| `icon` | `string` | Yes | Icon identifier used by the frontend. |
| `order` | `integer` | Yes | Display order for the homepage social links. |
| `title` | `string` | Yes | Human-readable label for the social destination. |

## Raw Schema

```json
{
  "id": "work.mattriley.socialLink",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "order",
          "title",
          "url",
          "icon"
        ],
        "properties": {
          "url": {
            "type": "string",
            "format": "uri",
            "description": "Absolute URL for the social profile."
          },
          "icon": {
            "type": "string",
            "description": "Icon identifier used by the frontend."
          },
          "order": {
            "type": "integer",
            "minimum": 0,
            "description": "Display order for the homepage social links."
          },
          "title": {
            "type": "string",
            "description": "Human-readable label for the social destination."
          }
        }
      },
      "description": "A social link record for a single profile destination."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A social profile link displayed on mattriley.work."
}
```
