# com.thelexfiles.testhabit.temp.habit

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

## Definitions

### `com.thelexfiles.testhabit.temp.habit`

**Type**: `record`

habit record

**Key**: `tid`

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

## Raw Schema

```json
{
  "id": "com.thelexfiles.testhabit.temp.habit",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "habitName",
          "createdAt"
        ],
        "properties": {
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "habitName": {
            "type": "string"
          }
        }
      },
      "description": "habit record"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
