# gg.lou.record

> Published by [lou.gg](https://lexicon.garden/identity/did:plc:w64dlsa4zwjv2wljlvmymldc)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:w64dlsa4zwjv2wljlvmymldc/gg.lou.record)
- [Documentation](https://lexicon.garden/lexicon/did:plc:w64dlsa4zwjv2wljlvmymldc/gg.lou.record/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:w64dlsa4zwjv2wljlvmymldc/gg.lou.record/examples)

## Definitions

### `gg.lou.record`

**Type**: `record`

An example schema to show off how lexshift allows for easy migrations.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `done` | `boolean` | Yes | Whether this record has been completed |
| `title` | `string` | Yes | title name of record; can not be empty |

## Raw Schema

```json
{
  "id": "gg.lou.record",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "done"
        ],
        "properties": {
          "done": {
            "type": "boolean",
            "default": false,
            "description": "Whether this record has been completed"
          },
          "title": {
            "type": "string",
            "maxLength": 640,
            "minLength": 1,
            "description": "title name of record; can not be empty",
            "maxGraphemes": 64
          }
        }
      },
      "description": "An example schema to show off how lexshift allows for easy migrations."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "revision": 3
}
```
