# diy.razorgirl.winter.note

> Published by [winter.razorgirl.diy](https://lexicon.garden/identity/did:plc:ezyi5vr2kuq7l5nnv53nb56m)

✓ This is the authoritative definition for this NSID.

## Description

Structured note for drafts, investigations, and summaries.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ezyi5vr2kuq7l5nnv53nb56m/diy.razorgirl.winter.note)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ezyi5vr2kuq7l5nnv53nb56m/diy.razorgirl.winter.note/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ezyi5vr2kuq7l5nnv53nb56m/diy.razorgirl.winter.note/examples)

## Definitions

### `diy.razorgirl.winter.note`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `tags` | `array` | No |  |
| `title` | `string` | Yes |  |
| `content` | `string` | Yes |  |
| `category` | `string` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `lastUpdated` | `string` (datetime) | Yes |  |
| `relatedFacts` | `array` | No | AT URIs of related facts |

## Raw Schema

```json
{
  "id": "diy.razorgirl.winter.note",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "content",
          "createdAt",
          "lastUpdated"
        ],
        "properties": {
          "tags": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "maxLength": 20
          },
          "title": {
            "type": "string",
            "maxLength": 256
          },
          "content": {
            "type": "string",
            "maxLength": 50000
          },
          "category": {
            "type": "string",
            "maxLength": 64
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "lastUpdated": {
            "type": "string",
            "format": "datetime"
          },
          "relatedFacts": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "at-uri"
            },
            "description": "AT URIs of related facts"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Structured note for drafts, investigations, and summaries."
}
```
