# social.wips.projectFollow

> Published by [wips.social](https://lexicon.garden/identity/did:plc:sodoi37wr44i3ypdwwlqqeup)

✓ This is the authoritative definition for this NSID.

## Description

Follow relationship for a wips.social project. Deleting the record unfollows. App View treats one follower/project pair as one active relationship.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:sodoi37wr44i3ypdwwlqqeup/social.wips.projectFollow)
- [Documentation](https://lexicon.garden/lexicon/did:plc:sodoi37wr44i3ypdwwlqqeup/social.wips.projectFollow/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:sodoi37wr44i3ypdwwlqqeup/social.wips.projectFollow/examples)

## Definitions

### `social.wips.projectFollow`

**Type**: `record`

Record declaring that the repository DID follows a project.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `ref` → `social.wips.defs#uriRef` | Yes | Stable AT URI of the social.wips.project being followed. |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when the follow was created. |

## Raw Schema

```json
{
  "id": "social.wips.projectFollow",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "ref": "social.wips.defs#uriRef",
            "type": "ref",
            "description": "Stable AT URI of the social.wips.project being followed."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when the follow was created."
          }
        }
      },
      "description": "Record declaring that the repository DID follows a project."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Follow relationship for a wips.social project. Deleting the record unfollows. App View treats one follower/project pair as one active relationship."
}
```
