# dk.raakode.lab.makker.friendRequest

> Published by [lexauthority.pds1.lab.raakode.dk](https://lexicon.garden/identity/did:plc:ck6ybqliyrt6irwzqflfhzdq)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ck6ybqliyrt6irwzqflfhzdq/dk.raakode.lab.makker.friendRequest)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ck6ybqliyrt6irwzqflfhzdq/dk.raakode.lab.makker.friendRequest/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ck6ybqliyrt6irwzqflfhzdq/dk.raakode.lab.makker.friendRequest/examples)

## Definitions

### `dk.raakode.lab.makker.friendRequest`

**Type**: `record`

A standing offer of friendship to another account. A PUBLIC repo record, not a space record: the point of a request is to be readable by someone who has no access yet, and a non-member's write into a space is never visible to anyone else (see docs/evidence/S06.md). Keyed by the subject DID, so offering twice updates rather than duplicates.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `string` (did) | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "dk.raakode.lab.makker.friendRequest",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "format": "did"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A standing offer of friendship to another account. A PUBLIC repo record, not a space record: the point of a request is to be readable by someone who has no access yet, and a non-member's write into a space is never visible to anyone else (see docs/evidence/S06.md). Keyed by the subject DID, so offering twice updates rather than duplicates."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
