# org.ballotready.constituent.profile

> Published by [ballotready.org](https://lexicon.garden/identity/did:plc:tctahrvhb37udyarpqahggnv)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:tctahrvhb37udyarpqahggnv/org.ballotready.constituent.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:tctahrvhb37udyarpqahggnv/org.ballotready.constituent.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:tctahrvhb37udyarpqahggnv/org.ballotready.constituent.profile/examples)

## Definitions

### `org.ballotready.constituent.profile`

**Type**: `record`

A declaration of a BallotReady constituent profile.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `createdAt` | `string` (datetime) | No |  |
| `description` | `string` | No | Free-form consituent profile description text. |
| `displayName` | `string` | No | Display name for the constituent. |
| `constituentOf` | `string` | No | Self-declared constituency, e.g. "Michigan" or "United States". |
| `bskyProfileProperties` | `array` | No | List of properties to inherit from the user's app.bsky.actor.profile record. |

## Raw Schema

```json
{
  "id": "org.ballotready.constituent.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "properties": {
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 2560,
            "description": "Free-form consituent profile description text.",
            "maxGraphemes": 256
          },
          "displayName": {
            "type": "string",
            "maxLength": 640,
            "description": "Display name for the constituent.",
            "maxGraphemes": 64
          },
          "constituentOf": {
            "type": "string",
            "maxLength": 640,
            "description": "Self-declared constituency, e.g. \"Michigan\" or \"United States\".",
            "maxGraphemes": 64
          },
          "bskyProfileProperties": {
            "type": "array",
            "items": {
              "enum": [
                "avatar",
                "banner",
                "displayName",
                "description"
              ],
              "type": "string"
            },
            "description": "List of properties to inherit from the user's app.bsky.actor.profile record."
          }
        }
      },
      "description": "A declaration of a BallotReady constituent profile."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
