# org.4906.temp.channel

> Published by [4906.org](https://lexicon.garden/identity/did:plc:3qkcles2iorrfuzncbm2xgd2)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:3qkcles2iorrfuzncbm2xgd2/org.4906.temp.channel)
- [Documentation](https://lexicon.garden/lexicon/did:plc:3qkcles2iorrfuzncbm2xgd2/org.4906.temp.channel/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:3qkcles2iorrfuzncbm2xgd2/org.4906.temp.channel/examples)

## Definitions

### `org.4906.temp.channel`

**Type**: `record`

A channel to send messages in.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | Name of the channel. |
| `createdAt` | `string` (datetime) | Yes |  |
| `description` | `string` | No |  |
| `descriptionFacets` | `array` | No |  |

## Raw Schema

```json
{
  "id": "org.4906.temp.channel",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 640,
            "minLength": 1,
            "description": "Name of the channel.",
            "maxGraphemes": 64
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 3000,
            "maxGraphemes": 300
          },
          "descriptionFacets": {
            "type": "array",
            "items": {
              "ref": "org.4906.temp.facet",
              "type": "ref"
            }
          }
        }
      },
      "description": "A channel to send messages in."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
