# dk.raakode.lab.makker.comment

> 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.comment)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ck6ybqliyrt6irwzqflfhzdq/dk.raakode.lab.makker.comment/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ck6ybqliyrt6irwzqflfhzdq/dk.raakode.lab.makker.comment/examples)

## Definitions

### `dk.raakode.lab.makker.comment`

**Type**: `record`

A reply written on someone else's note. Lives in the wall owner's space, authored by whoever wrote it, so it is readable by exactly the people who can read the note.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes |  |
| `subject` | `ref` → `com.atproto.repo.strongRef` | Yes | The note being replied to. |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "dk.raakode.lab.makker.comment",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "text",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 3000,
            "maxGraphemes": 300
          },
          "subject": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "The note being replied to."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A reply written on someone else's note. Lives in the wall owner's space, authored by whoever wrote it, so it is readable by exactly the people who can read the note."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
