# blue.registry.inviteResponse

> Published by [registry.blue](https://lexicon.garden/identity/did:plc:4olik72a346dcc2hppt7ioo4)

✓ This is the authoritative definition for this NSID.

## Description

A response to a collaboration invite.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:4olik72a346dcc2hppt7ioo4/blue.registry.inviteResponse)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4olik72a346dcc2hppt7ioo4/blue.registry.inviteResponse/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4olik72a346dcc2hppt7ioo4/blue.registry.inviteResponse/examples)

## Definitions

### `blue.registry.inviteResponse`

**Type**: `record`

Accepts or declines a collaboration invite. Stored in the collaborator's repo.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `invite` | `string` (at-uri) | Yes | AT-URI of the invite record in the owner's repo. |
| `status` | `string` | Yes | Whether the invite was accepted or declined. |
| `createdAt` | `string` (datetime) | Yes | Timestamp of the response. |

## Raw Schema

```json
{
  "id": "blue.registry.inviteResponse",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "invite",
          "status",
          "createdAt"
        ],
        "properties": {
          "invite": {
            "type": "string",
            "format": "at-uri",
            "description": "AT-URI of the invite record in the owner's repo."
          },
          "status": {
            "type": "string",
            "description": "Whether the invite was accepted or declined.",
            "knownValues": [
              "accepted",
              "declined"
            ]
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp of the response."
          }
        }
      },
      "description": "Accepts or declines a collaboration invite. Stored in the collaborator's repo."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A response to a collaboration invite."
}
```
