# tech.devrelish.event.meta

> Published by [devrelish.tech](https://lexicon.garden/identity/did:plc:6d3psjptpouatzj7t7sk5qrt)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:6d3psjptpouatzj7t7sk5qrt/tech.devrelish.event.meta)
- [Documentation](https://lexicon.garden/lexicon/did:plc:6d3psjptpouatzj7t7sk5qrt/tech.devrelish.event.meta/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:6d3psjptpouatzj7t7sk5qrt/tech.devrelish.event.meta/examples)

## Definitions

### `tech.devrelish.event.meta`

**Type**: `record`

Extended metadata for a community.lexicon.calendar.event record, adding group affiliation, capacity, speakers, and sessions.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `event` | `ref` → `com.atproto.repo.strongRef` | Yes | Strong reference to the community.lexicon.calendar.event record this metadata extends. |
| `group` | `ref` → `com.atproto.repo.strongRef` | Yes | Strong reference to the tech.devrelish.group record this event belongs to. |
| `capacity` | `integer` | No | Maximum number of attendees. Omit for unlimited. |
| `sessions` | `array` | No | Agenda sessions for the event. |
| `speakers` | `array` | No | Speakers presenting at the event. |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when this metadata was created. |
| `eventContext` | `string` | No | Conference or event the meetup is co-located with (e.g. 'KubeCon EU 2026'). |

### `tech.devrelish.event.meta#session`

**Type**: `object`

An agenda session at the event.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `title` | `string` | Yes |  |
| `abstract` | `string` | No |  |
| `startTime` | `string` | No | Local start time in HH:MM 24-hour format. |
| `speakerIndices` | `array` | No | Indices into the speakers array for this session's speakers. |

### `tech.devrelish.event.meta#speaker`

**Type**: `object`

A speaker at the event.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `bio` | `string` | No |  |
| `did` | `string` (did) | No | The DID the speaker's handle resolved to, when known. |
| `name` | `string` | Yes |  |
| `handle` | `string` | No | Speaker's AT Protocol handle, without the @. Any provider, not just Bluesky. |
| `company` | `string` | No |  |
| `imageUrl` | `string` (uri) | No | URL to the speaker's photo. |
| `jobTitle` | `string` | No |  |

## Raw Schema

```json
{
  "id": "tech.devrelish.event.meta",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "event",
          "group",
          "createdAt"
        ],
        "properties": {
          "event": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "Strong reference to the community.lexicon.calendar.event record this metadata extends."
          },
          "group": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "Strong reference to the tech.devrelish.group record this event belongs to."
          },
          "capacity": {
            "type": "integer",
            "minimum": 1,
            "description": "Maximum number of attendees. Omit for unlimited."
          },
          "sessions": {
            "type": "array",
            "items": {
              "ref": "#session",
              "type": "ref"
            },
            "maxLength": 50,
            "description": "Agenda sessions for the event."
          },
          "speakers": {
            "type": "array",
            "items": {
              "ref": "#speaker",
              "type": "ref"
            },
            "maxLength": 50,
            "description": "Speakers presenting at the event."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when this metadata was created."
          },
          "eventContext": {
            "type": "string",
            "maxLength": 200,
            "description": "Conference or event the meetup is co-located with (e.g. 'KubeCon EU 2026')."
          }
        }
      },
      "description": "Extended metadata for a community.lexicon.calendar.event record, adding group affiliation, capacity, speakers, and sessions."
    },
    "session": {
      "type": "object",
      "required": [
        "title"
      ],
      "properties": {
        "title": {
          "type": "string",
          "maxLength": 200
        },
        "abstract": {
          "type": "string",
          "maxLength": 5000
        },
        "startTime": {
          "type": "string",
          "description": "Local start time in HH:MM 24-hour format."
        },
        "speakerIndices": {
          "type": "array",
          "items": {
            "type": "integer",
            "minimum": 0
          },
          "description": "Indices into the speakers array for this session's speakers."
        }
      },
      "description": "An agenda session at the event."
    },
    "speaker": {
      "type": "object",
      "required": [
        "name"
      ],
      "properties": {
        "bio": {
          "type": "string",
          "maxLength": 2000
        },
        "did": {
          "type": "string",
          "format": "did",
          "description": "The DID the speaker's handle resolved to, when known."
        },
        "name": {
          "type": "string",
          "maxLength": 120
        },
        "handle": {
          "type": "string",
          "description": "Speaker's AT Protocol handle, without the @. Any provider, not just Bluesky."
        },
        "company": {
          "type": "string",
          "maxLength": 120
        },
        "imageUrl": {
          "type": "string",
          "format": "uri",
          "description": "URL to the speaker's photo."
        },
        "jobTitle": {
          "type": "string",
          "maxLength": 120
        }
      },
      "description": "A speaker at the event."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
