# com.thelexfiles.anotherjonwilson.temp.groceryItem

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

## Definitions

### `com.thelexfiles.anotherjonwilson.temp.groceryItem`

**Type**: `record`

An item I want to shop for.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes | the name of the item being added to the grocery list |
| `checked` | `boolean` | No | A boolean value showing whether the item has been checked or not, it's optional as it defaults to unchecked |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "com.thelexfiles.anotherjonwilson.temp.groceryItem",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "text",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "description": "the name of the item being added to the grocery list",
            "maxGraphemes": 300,
            "minGraphemes": 1
          },
          "checked": {
            "type": "boolean",
            "description": "A boolean value showing whether the item has been checked or not, it's optional as it defaults to unchecked"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "An item I want to shop for."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
