# io.atcr.sailor.profile

> Published by [did:web:lexicon.atcr.io](https://lexicon.garden/identity/did:web:lexicon.atcr.io)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:lexicon.atcr.io/io.atcr.sailor.profile)
- [Documentation](https://lexicon.garden/lexicon/did:web:lexicon.atcr.io/io.atcr.sailor.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:lexicon.atcr.io/io.atcr.sailor.profile/examples)

## Definitions

### `io.atcr.sailor.profile`

**Type**: `record`

User profile for ATCR registry. Stores preferences like default hold for blob storage.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `createdAt` | `string` (datetime) | Yes | Profile creation timestamp |
| `ociClient` | `string` | No | Preferred client for pull commands (docker, podman, buildah, nerdctl, crane). 'none' shows the image reference only. Defaults to docker if empty. |
| `updatedAt` | `string` (datetime) | No | Profile last updated timestamp |
| `defaultHold` | `string` (did) | No | Default hold DID for blob storage. If null, user has opted out of defaults. |
| `registryDomain` | `string` | No | Preferred registry domain for UI display. Must be one of the appview's configured registry domains. Empty means the primary (first configured) domain. |
| `autoRemoveUntagged` | `boolean` | No | Automatically delete manifest records that become untagged after a tag overwrite. Layers are cleaned up by hold garbage collection. |

## Raw Schema

```json
{
  "id": "io.atcr.sailor.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt"
        ],
        "properties": {
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Profile creation timestamp"
          },
          "ociClient": {
            "type": "string",
            "maxLength": 32,
            "description": "Preferred client for pull commands (docker, podman, buildah, nerdctl, crane). 'none' shows the image reference only. Defaults to docker if empty.",
            "knownValues": [
              "docker",
              "podman",
              "buildah",
              "nerdctl",
              "crane",
              "none"
            ]
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Profile last updated timestamp"
          },
          "defaultHold": {
            "type": "string",
            "format": "did",
            "description": "Default hold DID for blob storage. If null, user has opted out of defaults."
          },
          "registryDomain": {
            "type": "string",
            "maxLength": 255,
            "description": "Preferred registry domain for UI display. Must be one of the appview's configured registry domains. Empty means the primary (first configured) domain."
          },
          "autoRemoveUntagged": {
            "type": "boolean",
            "description": "Automatically delete manifest records that become untagged after a tag overwrite. Layers are cleaned up by hold garbage collection."
          }
        }
      },
      "description": "User profile for ATCR registry. Stores preferences like default hold for blob storage."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
