# app.fitsky.profile

> Published by [thatsit.dev](https://lexicon.garden/identity/did:plc:tr7zlhacx3fete5s7cx5tyjd)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:tr7zlhacx3fete5s7cx5tyjd/app.fitsky.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:tr7zlhacx3fete5s7cx5tyjd/app.fitsky.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:tr7zlhacx3fete5s7cx5tyjd/app.fitsky.profile/examples)

## Definitions

### `app.fitsky.profile`

**Type**: `record`

A FitSky-specific user profile with custom banner and bio

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `bio` | `string` | No | FitSky-specific bio text |
| `banner` | `blob` | No | Custom FitSky banner image. Falls back to Bluesky banner if not set. |
| `heightCm` | `integer` | No | Height in centimeters |
| `createdAt` | `string` (datetime) | No |  |
| `unitSystem` | `string` | No | User's preferred unit system |
| `dateOfBirth` | `string` (datetime) | No | User's date of birth (ISO 8601). Used for max HR calculation. |
| `weightGrams` | `integer` | No | Weight in grams |
| `publicProfile` | `boolean` | No | Whether workout detail pages are publicly viewable without authentication |

## Raw Schema

```json
{
  "id": "app.fitsky.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "properties": {
          "bio": {
            "type": "string",
            "maxLength": 2560,
            "description": "FitSky-specific bio text",
            "maxGraphemes": 256
          },
          "banner": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/webp"
            ],
            "maxSize": 1000000,
            "description": "Custom FitSky banner image. Falls back to Bluesky banner if not set."
          },
          "heightCm": {
            "type": "integer",
            "minimum": 0,
            "description": "Height in centimeters"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "unitSystem": {
            "type": "string",
            "maxLength": 64,
            "description": "User's preferred unit system",
            "knownValues": [
              "metric",
              "imperial"
            ]
          },
          "dateOfBirth": {
            "type": "string",
            "format": "datetime",
            "description": "User's date of birth (ISO 8601). Used for max HR calculation."
          },
          "weightGrams": {
            "type": "integer",
            "minimum": 0,
            "description": "Weight in grams"
          },
          "publicProfile": {
            "type": "boolean",
            "description": "Whether workout detail pages are publicly viewable without authentication"
          }
        }
      },
      "description": "A FitSky-specific user profile with custom banner and bio"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
