# at.tasked.tasked.notesTaskList

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

## Links

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

## Definitions

### `at.tasked.tasked.notesTaskList`

**Type**: `record`

A private ordered task list.

**Key**: `tid`

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

## Raw Schema

```json
{
  "id": "at.tasked.tasked.notesTaskList",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "formatVersion",
          "title",
          "position",
          "createdAt",
          "updatedAt"
        ],
        "properties": {
          "title": {
            "type": "string",
            "maxGraphemes": 200,
            "minGraphemes": 1
          },
          "archived": {
            "type": "boolean"
          },
          "position": {
            "type": "integer",
            "minimum": 0
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          },
          "formatVersion": {
            "type": "integer",
            "const": 1
          }
        }
      },
      "description": "A private ordered task list."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
