# app.rocksky.artist

> Published by [rocksky.app](https://lexicon.garden/identity/did:plc:vegqomyce4ssoqs7zwqvgqty)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.artist)
- [Documentation](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.artist/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.artist/examples)

## Definitions

### `app.rocksky.artist`

**Type**: `record`

A declaration of an artist.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `bio` | `string` | No | The biography of the artist. |
| `born` | `string` (datetime) | No | The birth date of the artist. |
| `died` | `string` (datetime) | No | The death date of the artist. |
| `name` | `string` | Yes | The name of the artist. |
| `tags` | `array` | No | The tags of the artist. |
| `bornIn` | `string` | No | The birth place of the artist. |
| `picture` | `blob` | No | The picture of the artist. |
| `createdAt` | `string` (datetime) | Yes | The date when the artist was created. |
| `pictureUrl` | `string` (uri) | No | The URL of the picture of the artist. |

## Raw Schema

```json
{
  "id": "app.rocksky.artist",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "bio": {
            "type": "string",
            "maxLength": 1000,
            "description": "The biography of the artist."
          },
          "born": {
            "type": "string",
            "format": "datetime",
            "description": "The birth date of the artist."
          },
          "died": {
            "type": "string",
            "format": "datetime",
            "description": "The death date of the artist."
          },
          "name": {
            "type": "string",
            "maxLength": 512,
            "minLength": 1,
            "description": "The name of the artist."
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 256,
              "minLength": 1
            },
            "description": "The tags of the artist."
          },
          "bornIn": {
            "type": "string",
            "maxLength": 256,
            "description": "The birth place of the artist."
          },
          "picture": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg"
            ],
            "maxSize": 2000000,
            "description": "The picture of the artist."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "The date when the artist was created."
          },
          "pictureUrl": {
            "type": "string",
            "format": "uri",
            "description": "The URL of the picture of the artist."
          }
        }
      },
      "description": "A declaration of an artist."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
