# network.cosmik.follow

> Published by [cosmik.network](https://lexicon.garden/identity/did:plc:b2p6rujcgpenbtcjposmjuc3)

✓ This is the authoritative definition for this NSID.

## Description

A record representing a follow relationship.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:b2p6rujcgpenbtcjposmjuc3/network.cosmik.follow)
- [Documentation](https://lexicon.garden/lexicon/did:plc:b2p6rujcgpenbtcjposmjuc3/network.cosmik.follow/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:b2p6rujcgpenbtcjposmjuc3/network.cosmik.follow/examples)

## Definitions

### `network.cosmik.follow`

**Type**: `record`

A record representing a follow of a user or collection.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `string` | Yes | DID of the user being followed, or AT URI of the collection being followed |
| `createdAt` | `string` (datetime) | Yes | Timestamp when this follow was created. |

## Raw Schema

```json
{
  "id": "network.cosmik.follow",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "description": "DID of the user being followed, or AT URI of the collection being followed"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when this follow was created."
          }
        }
      },
      "description": "A record representing a follow of a user or collection."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A record representing a follow relationship."
}
```
