# com.skymeetsblue.optIn

> Published by [skymeetsblue.com](https://lexicon.garden/identity/did:plc:ssmawmf2qkb5kg6cccbvqh2l)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ssmawmf2qkb5kg6cccbvqh2l/com.skymeetsblue.optIn)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ssmawmf2qkb5kg6cccbvqh2l/com.skymeetsblue.optIn/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ssmawmf2qkb5kg6cccbvqh2l/com.skymeetsblue.optIn/examples)

## Definitions

### `com.skymeetsblue.optIn`

**Type**: `record`

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `message` | `string` | No | A short note about who the user is looking to connect with, shown on their match card. |
| `createdAt` | `string` (datetime) | Yes |  |
| `discoverable` | `boolean` | Yes | Whether the user wants to be discovered as a candidate. When false, the user stays in the pool but is not shown to others. |

## Raw Schema

```json
{
  "id": "com.skymeetsblue.optIn",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt",
          "discoverable"
        ],
        "properties": {
          "message": {
            "type": "string",
            "maxLength": 480,
            "description": "A short note about who the user is looking to connect with, shown on their match card.",
            "maxGraphemes": 120
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "discoverable": {
            "type": "boolean",
            "description": "Whether the user wants to be discovered as a candidate. When false, the user stays in the pool but is not shown to others."
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
