# fm.teal.actor.profileStatus

> Published by [teal.fm](https://lexicon.garden/identity/did:plc:iwhuynr6mm6xxuh25o4do2tx)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:iwhuynr6mm6xxuh25o4do2tx/fm.teal.actor.profileStatus)
- [Documentation](https://lexicon.garden/lexicon/did:plc:iwhuynr6mm6xxuh25o4do2tx/fm.teal.actor.profileStatus/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:iwhuynr6mm6xxuh25o4do2tx/fm.teal.actor.profileStatus/examples)

## Definitions

### `fm.teal.actor.profileStatus`

**Type**: `record`

This lexicon is in a not officially released state. It is subject to change. | A declaration of the profile status of the actor.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `createdAt` | `string` (datetime) | No | The timestamp when this status was created |
| `updatedAt` | `string` (datetime) | No | The timestamp when this status was last updated |
| `completedOnboarding` | `string` | Yes | The onboarding completion status |

## Raw Schema

```json
{
  "id": "fm.teal.actor.profileStatus",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "completedOnboarding"
        ],
        "properties": {
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "The timestamp when this status was created"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "description": "The timestamp when this status was last updated"
          },
          "completedOnboarding": {
            "type": "string",
            "description": "The onboarding completion status",
            "knownValues": [
              "none",
              "profileOnboarding",
              "playOnboarding",
              "complete"
            ]
          }
        }
      },
      "description": "This lexicon is in a not officially released state. It is subject to change. | A declaration of the profile status of the actor."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
