# com.thelexfiles.jon2600.temp.todoItem

> Published by [protopunx.bsky.social](https://lexicon.garden/identity/did:plc:deh4u7fsoeqtrbtkf5eptizr)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:deh4u7fsoeqtrbtkf5eptizr/com.thelexfiles.jon2600.temp.todoItem)
- [Documentation](https://lexicon.garden/lexicon/did:plc:deh4u7fsoeqtrbtkf5eptizr/com.thelexfiles.jon2600.temp.todoItem/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:deh4u7fsoeqtrbtkf5eptizr/com.thelexfiles.jon2600.temp.todoItem/examples)

## Definitions

### `com.thelexfiles.jon2600.temp.todoItem`

**Type**: `record`

todo item

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `done` | `boolean` | No |  |
| `notDone` | `boolean` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "com.thelexfiles.jon2600.temp.todoItem",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt"
        ],
        "properties": {
          "done": {
            "type": "boolean"
          },
          "notDone": {
            "type": "boolean"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "todo item"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
