# haus.opn.mic.artist

> 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.artist)
- [Documentation](https://lexicon.garden/lexicon/did:plc:bhy6jyqdo23nlsxdpsaebl3x/haus.opn.mic.artist/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:bhy6jyqdo23nlsxdpsaebl3x/haus.opn.mic.artist/examples)

## Definitions

### `haus.opn.mic.artist`

**Type**: `record`

Metadata for an open mic artist.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `bio` | `string` | No |  |
| `name` | `string` | Yes |  |
| `genre` | `array` | No |  |
| `artistPic` | `blob` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `externalLinks` | `array` | No |  |

## Raw Schema

```json
{
  "id": "haus.opn.mic.artist",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "bio": {
            "type": "string",
            "maxLength": 1000
          },
          "name": {
            "type": "string",
            "maxLength": 100
          },
          "genre": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "artistPic": {
            "type": "blob",
            "accept": [
              "image/*"
            ],
            "maxSize": 1000000
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "externalLinks": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "uri"
            }
          }
        }
      },
      "description": "Metadata for an open mic artist."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
