# id.sifa.meeting

> Published by [sifa.id](https://lexicon.garden/identity/did:plc:2f2ahswozqy4v5lvu676375y)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:2f2ahswozqy4v5lvu676375y/id.sifa.meeting)
- [Documentation](https://lexicon.garden/lexicon/did:plc:2f2ahswozqy4v5lvu676375y/id.sifa.meeting/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:2f2ahswozqy4v5lvu676375y/id.sifa.meeting/examples)

## Definitions

### `id.sifa.meeting`

**Type**: `record`

Attestation of a face-to-face meeting with another user. Both participants create this record in their own PDS. The meeting is only displayed when both records exist (mutual confirmation). Either party can delete their record to remove the meeting.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `string` (did) | Yes | DID of the other participant in the meeting. |
| `createdAt` | `string` (datetime) | Yes |  |
| `meetingToken` | `string` | Yes | Server-issued JWT proving both parties were authenticated at the time of meeting. Contains both DIDs, timestamp, and server signature. |

## Raw Schema

```json
{
  "id": "id.sifa.meeting",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "meetingToken",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "format": "did",
            "description": "DID of the other participant in the meeting."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "meetingToken": {
            "type": "string",
            "maxLength": 512,
            "description": "Server-issued JWT proving both parties were authenticated at the time of meeting. Contains both DIDs, timestamp, and server signature."
          }
        }
      },
      "description": "Attestation of a face-to-face meeting with another user. Both participants create this record in their own PDS. The meeting is only displayed when both records exist (mutual confirmation). Either party can delete their record to remove the meeting."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
