# systems.timker.hawlt.putNote

> Published by [timker.systems](https://lexicon.garden/identity/did:plc:bazrmgio5a7x53v3pwpqnfds)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:bazrmgio5a7x53v3pwpqnfds/systems.timker.hawlt.putNote)
- [Documentation](https://lexicon.garden/lexicon/did:plc:bazrmgio5a7x53v3pwpqnfds/systems.timker.hawlt.putNote/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:bazrmgio5a7x53v3pwpqnfds/systems.timker.hawlt.putNote/examples)

## Definitions

### `systems.timker.hawlt.putNote`

**Type**: `procedure`

Write a note record to the repo. Creates a new record at the given rkey.

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `rkey` | `string` (record-key) | Yes | The record key (TID) for this note. |
| `record` | `ref` → `systems.timker.hawlt.note` | Yes | The note record to write. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cid` | `string` (cid) | Yes |  |
| `uri` | `string` (at-uri) | Yes |  |

## Raw Schema

```json
{
  "id": "systems.timker.hawlt.putNote",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "required": [
            "rkey",
            "record"
          ],
          "properties": {
            "rkey": {
              "type": "string",
              "format": "record-key",
              "description": "The record key (TID) for this note."
            },
            "record": {
              "ref": "systems.timker.hawlt.note",
              "type": "ref",
              "description": "The note record to write."
            }
          }
        },
        "encoding": "application/json"
      },
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "uri",
            "cid"
          ],
          "properties": {
            "cid": {
              "type": "string",
              "format": "cid"
            },
            "uri": {
              "type": "string",
              "format": "at-uri"
            }
          }
        },
        "encoding": "application/json"
      },
      "description": "Write a note record to the repo. Creates a new record at the given rkey."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
