# systems.witchcraft.concept

> 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.concept)
- [Documentation](https://lexicon.garden/lexicon/did:plc:2tqqxubv2lu4ahj35ysjer2r/systems.witchcraft.concept/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:2tqqxubv2lu4ahj35ysjer2r/systems.witchcraft.concept/examples)

## Definitions

### `systems.witchcraft.concept`

**Type**: `record`

A concept the agent has developed understanding of. Keyed by concept name slug.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | Human-readable concept name. |
| `text` | `string` | Yes | Explanation or understanding of the concept. |
| `createdAt` | `string` (datetime) | Yes | When this concept was last updated. |

## Raw Schema

```json
{
  "id": "systems.witchcraft.concept",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "text",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 500,
            "description": "Human-readable concept name."
          },
          "text": {
            "type": "string",
            "maxLength": 10000,
            "description": "Explanation or understanding of the concept."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When this concept was last updated."
          }
        }
      },
      "description": "A concept the agent has developed understanding of. Keyed by concept name slug."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
