# codes.advent.challenge.shhh

> Published by [advent.codes](https://lexicon.garden/identity/did:plc:birdjt6dgvncxbevjj53kuiy)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:birdjt6dgvncxbevjj53kuiy/codes.advent.challenge.shhh)
- [Documentation](https://lexicon.garden/lexicon/did:plc:birdjt6dgvncxbevjj53kuiy/codes.advent.challenge.shhh/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:birdjt6dgvncxbevjj53kuiy/codes.advent.challenge.shhh/examples)

## Definitions

### `codes.advent.challenge.shhh`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `string` (did) | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `secretPartOne` | `string` | Yes |  |

## Raw Schema

```json
{
  "id": "codes.advent.challenge.shhh",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "secretPartOne",
          "subject",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "format": "did"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "secretPartOne": {
            "type": "string"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
