# dev.roe.projectCategory

> 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.projectCategory)
- [Documentation](https://lexicon.garden/lexicon/did:plc:jbeaa5kdaladzwq3r7f5xgwe/dev.roe.projectCategory/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:jbeaa5kdaladzwq3r7f5xgwe/dev.roe.projectCategory/examples)

## Definitions

### `dev.roe.projectCategory`

**Type**: `record`

A category on the /projects page. Projects belong to a category via dev.roe.project.category.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `order` | `integer` | No | Lower values render first. Defaults to 100 in the editor. |
| `title` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "dev.roe.projectCategory",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "createdAt"
        ],
        "properties": {
          "order": {
            "type": "integer",
            "default": 100,
            "description": "Lower values render first. Defaults to 100 in the editor."
          },
          "title": {
            "type": "string",
            "maxLength": 2560,
            "maxGraphemes": 256
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A category on the /projects page. Projects belong to a category via dev.roe.project.category."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
