# place.stream.beta.invite

> Published by [did:web:stream.place](https://lexicon.garden/identity/did:web:stream.place)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.beta.invite)
- [Documentation](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.beta.invite/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.beta.invite/examples)

## Definitions

### `place.stream.beta.invite`

**Type**: `record`

Grants a single account access to a named beta feature on this network. Records live in a project-operated repo (the streamplace node's `--beta-invite-did`); operators trust invites only from that one account, by configuration. Each (did, feature) pair gets its own record so individual features can be revoked independently by deleting the corresponding record.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` (did) | Yes | Account being granted access to the named beta feature. |
| `feature` | `string` | Yes | Identifier of the beta feature being granted (e.g. "vod"). |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when this invite was issued. |

## Raw Schema

```json
{
  "id": "place.stream.beta.invite",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "did",
          "feature",
          "createdAt"
        ],
        "properties": {
          "did": {
            "type": "string",
            "format": "did",
            "description": "Account being granted access to the named beta feature."
          },
          "feature": {
            "type": "string",
            "description": "Identifier of the beta feature being granted (e.g. \"vod\")."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when this invite was issued."
          }
        }
      },
      "description": "Grants a single account access to a named beta feature on this network. Records live in a project-operated repo (the streamplace node's `--beta-invite-did`); operators trust invites only from that one account, by configuration. Each (did, feature) pair gets its own record so individual features can be revoked independently by deleting the corresponding record."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
