# fyi.atstore.listing.detail

> Published by [atstore.fyi](https://lexicon.garden/identity/did:plc:dvy6bdnofdfc4php4s5b457d)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:dvy6bdnofdfc4php4s5b457d/fyi.atstore.listing.detail)
- [Documentation](https://lexicon.garden/lexicon/did:plc:dvy6bdnofdfc4php4s5b457d/fyi.atstore.listing.detail/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:dvy6bdnofdfc4php4s5b457d/fyi.atstore.listing.detail/examples)

## Definitions

### `fyi.atstore.listing.detail`

**Type**: `record`

Public protocol or app listing in the AT Store directory.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `icon` | `string` (uri) | Yes |  |
| `name` | `string` | Yes |  |
| `slug` | `string` | Yes | Stable URL slug; unique within the publishing account. |
| `tagline` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `heroImage` | `string` (uri) | Yes | Hero / cover image (HTTPS URL). |
| `updatedAt` | `string` (datetime) | Yes |  |
| `description` | `string` | No |  |
| `externalUrl` | `string` (uri) | Yes | Primary product or project URL. |
| `screenshots` | `array` | No |  |
| `categorySlug` | `string` | Yes | Single browse category key (e.g. protocol/pds). |

## Raw Schema

```json
{
  "id": "fyi.atstore.listing.detail",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "slug",
          "name",
          "tagline",
          "externalUrl",
          "icon",
          "heroImage",
          "categorySlug",
          "createdAt",
          "updatedAt"
        ],
        "properties": {
          "icon": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048
          },
          "name": {
            "type": "string",
            "maxLength": 640
          },
          "slug": {
            "type": "string",
            "maxLength": 512,
            "minLength": 1,
            "description": "Stable URL slug; unique within the publishing account."
          },
          "tagline": {
            "type": "string",
            "maxLength": 300
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "heroImage": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048,
            "description": "Hero / cover image (HTTPS URL)."
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 20000
          },
          "externalUrl": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048,
            "description": "Primary product or project URL."
          },
          "screenshots": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "uri",
              "maxLength": 2048
            },
            "maxLength": 20
          },
          "categorySlug": {
            "type": "string",
            "maxLength": 256,
            "description": "Single browse category key (e.g. protocol/pds)."
          }
        }
      },
      "description": "Public protocol or app listing in the AT Store directory."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
