# site.exosphere.featureRequest.entry

> Published by [exosphere.site](https://lexicon.garden/identity/did:plc:tztfs5zp6b4feo4u64adfvmq)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:tztfs5zp6b4feo4u64adfvmq/site.exosphere.featureRequest.entry)
- [Documentation](https://lexicon.garden/lexicon/did:plc:tztfs5zp6b4feo4u64adfvmq/site.exosphere.featureRequest.entry/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:tztfs5zp6b4feo4u64adfvmq/site.exosphere.featureRequest.entry/examples)

## Definitions

### `site.exosphere.featureRequest.entry`

**Type**: `record`

A feature request submitted to a Sphere. Published on the author's PDS for public Spheres.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `title` | `string` | Yes |  |
| `subject` | `string` (did) | Yes | DID of the Sphere owner (the identity hosting the site.exosphere.sphere.profile record). |
| `updatedAt` | `string` (datetime) | No |  |
| `description` | `string` | No |  |

## Raw Schema

```json
{
  "id": "site.exosphere.featureRequest.entry",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "subject"
        ],
        "properties": {
          "title": {
            "type": "string",
            "maxLength": 512
          },
          "subject": {
            "type": "string",
            "format": "did",
            "description": "DID of the Sphere owner (the identity hosting the site.exosphere.sphere.profile record)."
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "maxLength": 64
          },
          "description": {
            "type": "string",
            "maxLength": 10000
          }
        }
      },
      "description": "A feature request submitted to a Sphere. Published on the author's PDS for public Spheres."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
