# uk.skyblur.preference

> Published by [skyblur.uk](https://lexicon.garden/identity/did:plc:4sm3vprfyl55ui3yhjd7w4po)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:4sm3vprfyl55ui3yhjd7w4po/uk.skyblur.preference)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4sm3vprfyl55ui3yhjd7w4po/uk.skyblur.preference/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4sm3vprfyl55ui3yhjd7w4po/uk.skyblur.preference/examples)

## Definitions

### `uk.skyblur.preference`

**Type**: `record`

A declaration of a Skyblur account.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `myPage` | `union` | Yes |  |

### `uk.skyblur.preference#myPage`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `description` | `string` | No | Define the description displayed on MyPage. |
| `isUseMyPage` | `boolean` | Yes | If this item is true, MyPage will be displayed. |

## Raw Schema

```json
{
  "id": "uk.skyblur.preference",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "myPage"
        ],
        "properties": {
          "myPage": {
            "refs": [
              "uk.skyblur.preference#myPage"
            ],
            "type": "union"
          }
        }
      },
      "description": "A declaration of a Skyblur account."
    },
    "myPage": {
      "type": "object",
      "required": [
        "isUseMyPage"
      ],
      "properties": {
        "description": {
          "type": "string",
          "maxLength": 10000,
          "description": "Define the description displayed on MyPage.",
          "maxGraphemes": 100000
        },
        "isUseMyPage": {
          "type": "boolean",
          "description": "If this item is true, MyPage will be displayed."
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
