# com.thelexfiles.anotherjonwilson.temp.groceryListItem

> 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.anotherjonwilson.temp.groceryListItem)
- [Documentation](https://lexicon.garden/lexicon/did:plc:deh4u7fsoeqtrbtkf5eptizr/com.thelexfiles.anotherjonwilson.temp.groceryListItem/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:deh4u7fsoeqtrbtkf5eptizr/com.thelexfiles.anotherjonwilson.temp.groceryListItem/examples)

## Definitions

### `com.thelexfiles.anotherjonwilson.temp.groceryListItem`

**Type**: `record`

an item in my grocery list


**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | the name of the item in my list |
| `checked` | `boolean` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "com.thelexfiles.anotherjonwilson.temp.groceryListItem",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "description": "the name of the item in my list",
            "maxGraphemes": 300,
            "minGraphemes": 0
          },
          "checked": {
            "type": "boolean"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "an item in my grocery list\n"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
