# com.atmosphereaccount.registry.featured

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

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ab7uvkn4kyf7l7prl26pz4r2/com.atmosphereaccount.registry.featured)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ab7uvkn4kyf7l7prl26pz4r2/com.atmosphereaccount.registry.featured/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ab7uvkn4kyf7l7prl26pz4r2/com.atmosphereaccount.registry.featured/examples)

## Definitions

### `com.atmosphereaccount.registry.featured`

**Type**: `record`

Curated directory of featured registry profiles. Maintained only on the Atmosphere account.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `entries` | `array` | Yes |  |

### `com.atmosphereaccount.registry.featured#entry`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` (did) | Yes |  |
| `badges` | `array` | No |  |
| `position` | `integer` | No |  |

## Raw Schema

```json
{
  "id": "com.atmosphereaccount.registry.featured",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "entries"
        ],
        "properties": {
          "entries": {
            "type": "array",
            "items": {
              "ref": "#entry",
              "type": "ref"
            }
          }
        }
      },
      "description": "Curated directory of featured registry profiles. Maintained only on the Atmosphere account."
    },
    "entry": {
      "type": "object",
      "required": [
        "did"
      ],
      "properties": {
        "did": {
          "type": "string",
          "format": "did",
          "maxLength": 256
        },
        "badges": {
          "type": "array",
          "items": {
            "type": "string",
            "maxLength": 32,
            "knownValues": [
              "verified",
              "official"
            ]
          }
        },
        "position": {
          "type": "integer",
          "minimum": 0
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
