# at.tasked.note

> Published by [tasked.at](https://lexicon.garden/identity/did:plc:ntpyewuslgminxapen6aymjs)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ntpyewuslgminxapen6aymjs/at.tasked.note)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ntpyewuslgminxapen6aymjs/at.tasked.note/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ntpyewuslgminxapen6aymjs/at.tasked.note/examples)

## Definitions

### `at.tasked.note`

**Type**: `record`

A private text note in the owner's TaskedAT workspace.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `body` | `string` | Yes |  |
| `title` | `string` | Yes |  |
| `labels` | `array` | No |  |
| `pinned` | `boolean` | Yes |  |
| `archived` | `boolean` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `updatedAt` | `string` (datetime) | Yes |  |
| `formatVersion` | `integer` | Yes |  |

## Raw Schema

```json
{
  "id": "at.tasked.note",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "formatVersion",
          "title",
          "body",
          "pinned",
          "archived",
          "createdAt",
          "updatedAt"
        ],
        "properties": {
          "body": {
            "type": "string",
            "maxGraphemes": 100000
          },
          "title": {
            "type": "string",
            "maxGraphemes": 240,
            "minGraphemes": 1
          },
          "labels": {
            "type": "array",
            "items": {
              "type": "string",
              "maxGraphemes": 50,
              "minGraphemes": 1
            },
            "maxLength": 20
          },
          "pinned": {
            "type": "boolean"
          },
          "archived": {
            "type": "boolean"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          },
          "formatVersion": {
            "type": "integer",
            "const": 1
          }
        }
      },
      "description": "A private text note in the owner's TaskedAT workspace."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
