# site.exosphere.featureRequest.status

> 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.status)
- [Documentation](https://lexicon.garden/lexicon/did:plc:tztfs5zp6b4feo4u64adfvmq/site.exosphere.featureRequest.status/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:tztfs5zp6b4feo4u64adfvmq/site.exosphere.featureRequest.status/examples)

## Definitions

### `site.exosphere.featureRequest.status`

**Type**: `record`

A status change on a feature request, published by an admin/owner on their PDS. Third-party indexers can replay these to derive the current status of a request.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `status` | `string` | Yes |  |
| `subject` | `string` (at-uri) | Yes | AT URI of the feature request whose status is being changed. |

## Raw Schema

```json
{
  "id": "site.exosphere.featureRequest.status",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "status"
        ],
        "properties": {
          "status": {
            "type": "string",
            "maxLength": 128,
            "knownValues": [
              "requested",
              "not-planned",
              "approved",
              "in-progress",
              "done",
              "duplicate"
            ]
          },
          "subject": {
            "type": "string",
            "format": "at-uri",
            "description": "AT URI of the feature request whose status is being changed."
          }
        }
      },
      "description": "A status change on a feature request, published by an admin/owner on their PDS. Third-party indexers can replay these to derive the current status of a request."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
