# io.kich.graph.follow

> Published by [kich.io](https://lexicon.garden/identity/did:plc:uxjwdy4wvuridijisalvxlxe)

✓ This is the authoritative definition for this NSID.

## Description

A social follow. Record declaring that the repository owner follows another user.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:uxjwdy4wvuridijisalvxlxe/io.kich.graph.follow)
- [Documentation](https://lexicon.garden/lexicon/did:plc:uxjwdy4wvuridijisalvxlxe/io.kich.graph.follow/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:uxjwdy4wvuridijisalvxlxe/io.kich.graph.follow/examples)

## Definitions

### `io.kich.graph.follow`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `string` (did) | Yes | The DID of the user being followed |
| `createdAt` | `string` (datetime) | Yes | When this follow was created |

## Raw Schema

```json
{
  "id": "io.kich.graph.follow",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "format": "did",
            "description": "The DID of the user being followed"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When this follow was created"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A social follow. Record declaring that the repository owner follows another user."
}
```
