# id.sifa.profile.honor

> Published by [sifa.id](https://lexicon.garden/identity/did:plc:2f2ahswozqy4v5lvu676375y)

✓ This is the authoritative definition for this NSID.

## Description

An honor, award, or recognition received by the user.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:2f2ahswozqy4v5lvu676375y/id.sifa.profile.honor)
- [Documentation](https://lexicon.garden/lexicon/did:plc:2f2ahswozqy4v5lvu676375y/id.sifa.profile.honor/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:2f2ahswozqy4v5lvu676375y/id.sifa.profile.honor/examples)

## Definitions

### `id.sifa.profile.honor`

**Type**: `record`

Record representing a single honor or award.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `title` | `string` | Yes | Honor or award title. |
| `issuer` | `string` | No | Organization or entity that granted the honor. |
| `awardedAt` | `string` (datetime) | No | Date the honor was awarded. |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when this record was originally created. |
| `issuerDid` | `string` (did) | No | DID of the issuing entity's ATproto account, if one exists. |
| `description` | `string` | No | Description of the honor or award. |

## Raw Schema

```json
{
  "id": "id.sifa.profile.honor",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "createdAt"
        ],
        "properties": {
          "title": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "description": "Honor or award title.",
            "maxGraphemes": 200
          },
          "issuer": {
            "type": "string",
            "maxLength": 1000,
            "description": "Organization or entity that granted the honor.",
            "maxGraphemes": 100
          },
          "awardedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Date the honor was awarded."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when this record was originally created."
          },
          "issuerDid": {
            "type": "string",
            "format": "did",
            "description": "DID of the issuing entity's ATproto account, if one exists."
          },
          "description": {
            "type": "string",
            "maxLength": 50000,
            "description": "Description of the honor or award.",
            "maxGraphemes": 5000
          }
        }
      },
      "description": "Record representing a single honor or award."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "An honor, award, or recognition received by the user."
}
```
