# com.thelexfiles.anotherjonwilson.temp.item

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

## Definitions

### `com.thelexfiles.anotherjonwilson.temp.item`

**Type**: `record`

grocery item

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | the name of the item |
| `checked` | `boolean` | No | not required because default is unchecked |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "com.thelexfiles.anotherjonwilson.temp.item",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "description": "the name of the item",
            "maxGraphemes": 300,
            "minGraphemes": 0
          },
          "checked": {
            "type": "boolean",
            "description": "not required because default is unchecked"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "grocery item"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
