# blue.pronouns.pronoun

> Published by [pronouns.blue](https://lexicon.garden/identity/did:plc:kvky2g3jynpp7wvltxkz74h4)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:kvky2g3jynpp7wvltxkz74h4/blue.pronouns.pronoun)
- [Documentation](https://lexicon.garden/lexicon/did:plc:kvky2g3jynpp7wvltxkz74h4/blue.pronouns.pronoun/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:kvky2g3jynpp7wvltxkz74h4/blue.pronouns.pronoun/examples)

## Definitions

### `blue.pronouns.pronoun`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `lang` | `string` | No | BCP-47 language tag (e.g. 'en', 'de', 'zh-CN'). Omit or default to 'en' for English. |
| `value` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `preferred` | `boolean` | Yes |  |
| `sortOrder` | `integer` | No |  |
| `updatedAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "blue.pronouns.pronoun",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "value",
          "preferred",
          "createdAt",
          "updatedAt"
        ],
        "properties": {
          "lang": {
            "type": "string",
            "maxLength": 35,
            "minLength": 2,
            "description": "BCP-47 language tag (e.g. 'en', 'de', 'zh-CN'). Omit or default to 'en' for English."
          },
          "value": {
            "type": "string",
            "maxLength": 64,
            "minLength": 1,
            "maxGraphemes": 64
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "preferred": {
            "type": "boolean"
          },
          "sortOrder": {
            "type": "integer",
            "maximum": 127,
            "minimum": 0
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
