# tech.devrelish.group

> 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.group)
- [Documentation](https://lexicon.garden/lexicon/did:plc:6d3psjptpouatzj7t7sk5qrt/tech.devrelish.group/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:6d3psjptpouatzj7t7sk5qrt/tech.devrelish.group/examples)

## Definitions

### `tech.devrelish.group`

**Type**: `record`

A recurring meetup group with a persistent identity.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` (did) | No | The DID the group's handle resolved to, when known. Stable across handle changes. |
| `name` | `string` | Yes | The display name of the group. |
| `tags` | `array` | No | Tags describing the group's focus areas. |
| `handle` | `string` | No | The group's AT Protocol handle, without the @ (e.g. 'yourgroup.example.com'). Any provider, not just Bluesky. |
| `website` | `string` (uri) | No | The group's website URL. |
| `category` | `string` | No | The primary category of the group (e.g. 'devrel', 'web', 'ai'). |
| `location` | `ref` → `community.lexicon.location.address` | No | The primary location of the group. |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when the group was created. |
| `description` | `string` | Yes | A description of the group. Markdown is supported. |
| `linkedinUrl` | `string` (uri) | No | The group's LinkedIn page URL. |
| `coOrganizers` | `array` | No | DIDs of co-organizers who can manage the group. |

## Raw Schema

```json
{
  "id": "tech.devrelish.group",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "description",
          "createdAt"
        ],
        "properties": {
          "did": {
            "type": "string",
            "format": "did",
            "description": "The DID the group's handle resolved to, when known. Stable across handle changes."
          },
          "name": {
            "type": "string",
            "maxLength": 120,
            "description": "The display name of the group."
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 64
            },
            "maxLength": 10,
            "description": "Tags describing the group's focus areas."
          },
          "handle": {
            "type": "string",
            "description": "The group's AT Protocol handle, without the @ (e.g. 'yourgroup.example.com'). Any provider, not just Bluesky."
          },
          "website": {
            "type": "string",
            "format": "uri",
            "description": "The group's website URL."
          },
          "category": {
            "type": "string",
            "maxLength": 64,
            "description": "The primary category of the group (e.g. 'devrel', 'web', 'ai')."
          },
          "location": {
            "ref": "community.lexicon.location.address",
            "type": "ref",
            "description": "The primary location of the group."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when the group was created."
          },
          "description": {
            "type": "string",
            "maxLength": 10000,
            "description": "A description of the group. Markdown is supported."
          },
          "linkedinUrl": {
            "type": "string",
            "format": "uri",
            "description": "The group's LinkedIn page URL."
          },
          "coOrganizers": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "did"
            },
            "maxLength": 20,
            "description": "DIDs of co-organizers who can manage the group."
          }
        }
      },
      "description": "A recurring meetup group with a persistent identity."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
