# id.sifa.graph.follow

> Published by [sifa.id](https://lexicon.garden/identity/did:plc:2f2ahswozqy4v5lvu676375y)

✓ This is the authoritative definition for this NSID.

## Description

A one-way professional follow. Indicates the follower wants to see the subject's professional content on Sifa.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:2f2ahswozqy4v5lvu676375y/id.sifa.graph.follow)
- [Documentation](https://lexicon.garden/lexicon/did:plc:2f2ahswozqy4v5lvu676375y/id.sifa.graph.follow/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:2f2ahswozqy4v5lvu676375y/id.sifa.graph.follow/examples)

## Definitions

### `id.sifa.graph.follow`

**Type**: `record`

Record representing a professional follow relationship. Lives in the follower's PDS.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `string` (did) | Yes | DID of the user being followed. |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when this follow was created. |

## Raw Schema

```json
{
  "id": "id.sifa.graph.follow",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "format": "did",
            "description": "DID of the user being followed."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when this follow was created."
          }
        }
      },
      "description": "Record representing a professional follow relationship. Lives in the follower's PDS."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A one-way professional follow. Indicates the follower wants to see the subject's professional content on Sifa."
}
```
