# am.noz.taskedat.notesTask

> Published by [noz.am](https://lexicon.garden/identity/did:plc:lmkzmvv6sdxntwtyxpg7fqqq)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:lmkzmvv6sdxntwtyxpg7fqqq/am.noz.taskedat.notesTask)
- [Documentation](https://lexicon.garden/lexicon/did:plc:lmkzmvv6sdxntwtyxpg7fqqq/am.noz.taskedat.notesTask/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:lmkzmvv6sdxntwtyxpg7fqqq/am.noz.taskedat.notesTask/examples)

## Definitions

### `am.noz.taskedat.notesTask`

**Type**: `record`

A private actionable item belonging to a TaskedAT task list.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `list` | `string` (at-uri) | Yes | The private task-list record that owns this task. |
| `dueAt` | `string` (datetime) | No |  |
| `title` | `string` | Yes |  |
| `details` | `string` | Yes |  |
| `position` | `integer` | Yes |  |
| `completed` | `boolean` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `updatedAt` | `string` (datetime) | Yes |  |
| `completedAt` | `string` (datetime) | No |  |
| `formatVersion` | `integer` | Yes |  |

## Raw Schema

```json
{
  "id": "am.noz.taskedat.notesTask",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "formatVersion",
          "list",
          "title",
          "details",
          "position",
          "completed",
          "createdAt",
          "updatedAt"
        ],
        "properties": {
          "list": {
            "type": "string",
            "format": "at-uri",
            "description": "The private task-list record that owns this task."
          },
          "dueAt": {
            "type": "string",
            "format": "datetime"
          },
          "title": {
            "type": "string",
            "maxGraphemes": 500,
            "minGraphemes": 1
          },
          "details": {
            "type": "string",
            "maxGraphemes": 20000
          },
          "position": {
            "type": "integer",
            "minimum": 0
          },
          "completed": {
            "type": "boolean"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          },
          "completedAt": {
            "type": "string",
            "format": "datetime"
          },
          "formatVersion": {
            "type": "integer",
            "const": 1
          }
        }
      },
      "description": "A private actionable item belonging to a TaskedAT task list."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
