# app.rocksky.actor.defs

> 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.actor.defs)
- [Documentation](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.actor.defs/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:vegqomyce4ssoqs7zwqvgqty/app.rocksky.actor.defs/examples)

## Definitions

### `app.rocksky.actor.defs#artistViewBasic`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `id` | `string` | No |  |
| `uri` | `string` (at-uri) | No |  |
| `name` | `string` | No |  |
| `weight` | `integer` | No |  |
| `picture` | `string` (uri) | No |  |
| `user1Rank` | `integer` | No |  |
| `user2Rank` | `integer` | No |  |

### `app.rocksky.actor.defs#profileViewBasic`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `id` | `string` | No | The unique identifier of the actor. |
| `did` | `string` | No | The DID of the actor. |
| `avatar` | `string` (uri) | No | The URL of the actor's avatar image. |
| `handle` | `string` | No | The handle of the actor. |
| `createdAt` | `string` (datetime) | No | The date and time when the actor was created. |
| `updatedAt` | `string` (datetime) | No | The date and time when the actor was last updated. |
| `displayName` | `string` | No | The display name of the actor. |

### `app.rocksky.actor.defs#neighbourViewBasic`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` | No |  |
| `avatar` | `string` (uri) | No | The URL of the actor's avatar image. |
| `handle` | `string` | No |  |
| `userId` | `string` | No |  |
| `displayName` | `string` | No |  |
| `similarityScore` | `integer` | No | The similarity score with the actor. |
| `sharedArtistsCount` | `integer` | No | The number of artists shared with the actor. |
| `topSharedArtistNames` | `array` | No | The top shared artist names with the actor. |
| `topSharedArtistsDetails` | `array` | No | The top shared artist details with the actor. |

### `app.rocksky.actor.defs#profileViewDetailed`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `id` | `string` | No | The unique identifier of the actor. |
| `did` | `string` | No | The DID of the actor. |
| `avatar` | `string` (uri) | No | The URL of the actor's avatar image. |
| `handle` | `string` | No | The handle of the actor. |
| `createdAt` | `string` (datetime) | No | The date and time when the actor was created. |
| `updatedAt` | `string` (datetime) | No | The date and time when the actor was last updated. |
| `displayName` | `string` | No | The display name of the actor. |

### `app.rocksky.actor.defs#compatibilityViewBasic`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `sharedArtists` | `integer` | No |  |
| `user1ArtistCount` | `integer` | No |  |
| `user2ArtistCount` | `integer` | No |  |
| `compatibilityLevel` | `integer` | No |  |
| `topSharedArtistNames` | `array` | No |  |
| `compatibilityPercentage` | `integer` | No |  |
| `topSharedDetailedArtists` | `array` | No |  |

## Raw Schema

```json
{
  "id": "app.rocksky.actor.defs",
  "defs": {
    "artistViewBasic": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        },
        "uri": {
          "type": "string",
          "format": "at-uri"
        },
        "name": {
          "type": "string"
        },
        "weight": {
          "type": "integer"
        },
        "picture": {
          "type": "string",
          "format": "uri"
        },
        "user1Rank": {
          "type": "integer"
        },
        "user2Rank": {
          "type": "integer"
        }
      }
    },
    "profileViewBasic": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "description": "The unique identifier of the actor."
        },
        "did": {
          "type": "string",
          "description": "The DID of the actor."
        },
        "avatar": {
          "type": "string",
          "format": "uri",
          "description": "The URL of the actor's avatar image."
        },
        "handle": {
          "type": "string",
          "description": "The handle of the actor."
        },
        "createdAt": {
          "type": "string",
          "format": "datetime",
          "description": "The date and time when the actor was created."
        },
        "updatedAt": {
          "type": "string",
          "format": "datetime",
          "description": "The date and time when the actor was last updated."
        },
        "displayName": {
          "type": "string",
          "description": "The display name of the actor."
        }
      }
    },
    "neighbourViewBasic": {
      "type": "object",
      "properties": {
        "did": {
          "type": "string"
        },
        "avatar": {
          "type": "string",
          "format": "uri",
          "description": "The URL of the actor's avatar image."
        },
        "handle": {
          "type": "string"
        },
        "userId": {
          "type": "string"
        },
        "displayName": {
          "type": "string"
        },
        "similarityScore": {
          "type": "integer",
          "description": "The similarity score with the actor."
        },
        "sharedArtistsCount": {
          "type": "integer",
          "description": "The number of artists shared with the actor."
        },
        "topSharedArtistNames": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "The top shared artist names with the actor."
        },
        "topSharedArtistsDetails": {
          "type": "array",
          "items": {
            "ref": "app.rocksky.artist.defs#artistViewBasic",
            "type": "ref"
          },
          "description": "The top shared artist details with the actor."
        }
      }
    },
    "profileViewDetailed": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "description": "The unique identifier of the actor."
        },
        "did": {
          "type": "string",
          "description": "The DID of the actor."
        },
        "avatar": {
          "type": "string",
          "format": "uri",
          "description": "The URL of the actor's avatar image."
        },
        "handle": {
          "type": "string",
          "description": "The handle of the actor."
        },
        "createdAt": {
          "type": "string",
          "format": "datetime",
          "description": "The date and time when the actor was created."
        },
        "updatedAt": {
          "type": "string",
          "format": "datetime",
          "description": "The date and time when the actor was last updated."
        },
        "displayName": {
          "type": "string",
          "description": "The display name of the actor."
        }
      }
    },
    "compatibilityViewBasic": {
      "type": "object",
      "properties": {
        "sharedArtists": {
          "type": "integer"
        },
        "user1ArtistCount": {
          "type": "integer"
        },
        "user2ArtistCount": {
          "type": "integer"
        },
        "compatibilityLevel": {
          "type": "integer"
        },
        "topSharedArtistNames": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "compatibilityPercentage": {
          "type": "integer"
        },
        "topSharedDetailedArtists": {
          "type": "array",
          "items": {
            "ref": "app.rocksky.actor.defs#artistViewBasic",
            "type": "ref"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
