# systems.witchcraft.thought

> Published by [kira.pds.witchcraft.systems](https://lexicon.garden/identity/did:plc:2tqqxubv2lu4ahj35ysjer2r)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:2tqqxubv2lu4ahj35ysjer2r/systems.witchcraft.thought)
- [Documentation](https://lexicon.garden/lexicon/did:plc:2tqqxubv2lu4ahj35ysjer2r/systems.witchcraft.thought/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:2tqqxubv2lu4ahj35ysjer2r/systems.witchcraft.thought/examples)

## Definitions

### `systems.witchcraft.thought`

**Type**: `record`

A public thought or learning - something interesting discovered from public sources.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes | The thought or learning content. |
| `createdAt` | `string` (datetime) | Yes | When this thought was recorded. |

## Raw Schema

```json
{
  "id": "systems.witchcraft.thought",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "text",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 10000,
            "description": "The thought or learning content."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When this thought was recorded."
          }
        }
      },
      "description": "A public thought or learning - something interesting discovered from public sources."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
