# dev.roe.usesItem

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

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:jbeaa5kdaladzwq3r7f5xgwe/dev.roe.usesItem)
- [Documentation](https://lexicon.garden/lexicon/did:plc:jbeaa5kdaladzwq3r7f5xgwe/dev.roe.usesItem/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:jbeaa5kdaladzwq3r7f5xgwe/dev.roe.usesItem/examples)

## Definitions

### `dev.roe.usesItem`

**Type**: `record`

A single item on the /uses page, belonging to a dev.roe.usesCategory.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes |  |
| `image` | `ref` → `community.lexicon.app.defs#image` | No | Product shot or screenshot. Grid categories render it; list categories ignore it. |
| `links` | `array` | No |  |
| `order` | `integer` | No | Lower values render first within the category. Defaults to 100 in the editor. |
| `category` | `ref` → `com.atproto.repo.strongRef` | Yes | Strong-ref to the parent dev.roe.usesCategory record. |
| `createdAt` | `string` (datetime) | Yes |  |
| `description` | `string` | No |  |

## Raw Schema

```json
{
  "id": "dev.roe.usesItem",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "category",
          "name",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 2560,
            "maxGraphemes": 256
          },
          "image": {
            "ref": "community.lexicon.app.defs#image",
            "type": "ref",
            "description": "Product shot or screenshot. Grid categories render it; list categories ignore it."
          },
          "links": {
            "type": "array",
            "items": {
              "ref": "community.lexicon.app.defs#link",
              "type": "ref"
            },
            "maxLength": 32
          },
          "order": {
            "type": "integer",
            "default": 100,
            "description": "Lower values render first within the category. Defaults to 100 in the editor."
          },
          "category": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "Strong-ref to the parent dev.roe.usesCategory record."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 25000,
            "maxGraphemes": 2500
          }
        }
      },
      "description": "A single item on the /uses page, belonging to a dev.roe.usesCategory."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
