# com.thelexfiles.jon.temp.groceryList

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

## Definitions

### `com.thelexfiles.jon.temp.groceryList`

**Type**: `record`

a list of groceries

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `createdAt` | `string` (datetime) | Yes |  |
| `groceryItem` | `string` | Yes |  |

## Raw Schema

```json
{
  "id": "com.thelexfiles.jon.temp.groceryList",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "groceryItem",
          "createdAt"
        ],
        "properties": {
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "groceryItem": {
            "type": "string",
            "maxGraphemes": 100,
            "minGraphemes": 1
          }
        }
      },
      "description": "a list of groceries"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
