# haus.opn.mic.show

> Published by [opn.haus](https://lexicon.garden/identity/did:plc:bhy6jyqdo23nlsxdpsaebl3x)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:bhy6jyqdo23nlsxdpsaebl3x/haus.opn.mic.show)
- [Documentation](https://lexicon.garden/lexicon/did:plc:bhy6jyqdo23nlsxdpsaebl3x/haus.opn.mic.show/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:bhy6jyqdo23nlsxdpsaebl3x/haus.opn.mic.show/examples)

## Definitions

### `haus.opn.mic.show`

**Type**: `record`

A recurring open mic show series.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `title` | `string` | Yes |  |
| `artist` | `string` (at-uri) | Yes | The AT-URI of the haus.opn.mic.artist record. |
| `coverArt` | `blob` | No |  |
| `schedule` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `description` | `string` | No |  |

## Raw Schema

```json
{
  "id": "haus.opn.mic.show",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "artist",
          "schedule",
          "createdAt"
        ],
        "properties": {
          "title": {
            "type": "string",
            "maxLength": 100
          },
          "artist": {
            "type": "string",
            "format": "at-uri",
            "description": "The AT-URI of the haus.opn.mic.artist record."
          },
          "coverArt": {
            "type": "blob",
            "accept": [
              "image/*"
            ],
            "maxSize": 1000000
          },
          "schedule": {
            "type": "string",
            "knownValues": [
              "daily",
              "weekly",
              "biweekly",
              "monthly",
              "irregular"
            ]
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 3000
          }
        }
      },
      "description": "A recurring open mic show series."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
