# at.anab.idea

> Published by [faz.ms](https://lexicon.garden/identity/did:plc:huocg7zsbthk54vjai56wd27)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:huocg7zsbthk54vjai56wd27/at.anab.idea)
- [Documentation](https://lexicon.garden/lexicon/did:plc:huocg7zsbthk54vjai56wd27/at.anab.idea/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:huocg7zsbthk54vjai56wd27/at.anab.idea/examples)

## Definitions

### `at.anab.idea`

**Type**: `record`

A candidate feature idea on an anab.at board. Lives in the board owner's repo.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | No |  |
| `board` | `string` (at-uri) | Yes | The at.anab.board record this idea belongs to (same repo). |
| `title` | `string` | Yes |  |
| `subject` | `string` (uri) | No | at:// or https:// link to the long-form subject. |
| `archived` | `boolean` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "at.anab.idea",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "board",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 3000,
            "maxGraphemes": 300
          },
          "board": {
            "type": "string",
            "format": "at-uri",
            "description": "The at.anab.board record this idea belongs to (same repo)."
          },
          "title": {
            "type": "string",
            "maxLength": 1200,
            "maxGraphemes": 120
          },
          "subject": {
            "type": "string",
            "format": "uri",
            "description": "at:// or https:// link to the long-form subject."
          },
          "archived": {
            "type": "boolean",
            "default": false
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A candidate feature idea on an anab.at board. Lives in the board owner's repo."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
