# pub.chive.actor.profile

> Published by [chive.pub](https://lexicon.garden/identity/did:plc:7natp5xae72bddaqlkef2t4e)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:7natp5xae72bddaqlkef2t4e/pub.chive.actor.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:7natp5xae72bddaqlkef2t4e/pub.chive.actor.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:7natp5xae72bddaqlkef2t4e/pub.chive.actor.profile/examples)

## Definitions

### `pub.chive.actor.profile`

**Type**: `record`

Chive-specific author profile

**Key**: `self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `bio` | `string` | No |  |
| `orcid` | `string` | No | ORCID identifier |
| `avatar` | `blob` | No |  |
| `dblpId` | `string` | No | DBLP author identifier (e.g., homepages/s/JohnSmith) |
| `fieldUris` | `array` | No | AT-URIs of field nodes (subkind=field) |
| `openAlexId` | `string` | No | OpenAlex author ID (e.g., A5023888391) |
| `displayName` | `string` | No |  |
| `affiliations` | `array` | No | Current institutional affiliations with optional ROR IDs |
| `nameVariants` | `array` | No | Alternative name forms for paper matching (e.g., maiden name, transliterations, initials like 'J. Smith') |
| `openReviewId` | `string` | No | OpenReview profile ID |
| `arxivAuthorId` | `string` | No | arXiv author identifier |
| `schemaRevision` | `integer` | No | Schema revision this record was created with. Absent means revision 1. |
| `scopusAuthorId` | `string` | No | Scopus author ID |
| `googleScholarId` | `string` | No | Google Scholar profile ID |
| `researchKeywords` | `array` | No | Research topics and keywords with optional authority IDs |
| `semanticScholarId` | `string` | No | Semantic Scholar author ID |
| `previousAffiliations` | `array` | No | Past institutional affiliations that may appear on older papers |

### `pub.chive.actor.profile#keyword`

**Type**: `object`

Research keyword referencing a topic node

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `label` | `string` | Yes | Keyword label (display fallback if no topicUri) |
| `fastId` | `string` | No | FAST subject heading ID for legacy/external data |
| `topicUri` | `string` (at-uri) | No | AT-URI of topic node (subkind=topic) |
| `wikidataId` | `string` | No | Wikidata entity ID (e.g., Q12345) for legacy/external data |

## Raw Schema

```json
{
  "id": "pub.chive.actor.profile",
  "defs": {
    "main": {
      "key": "self",
      "type": "record",
      "record": {
        "type": "object",
        "properties": {
          "bio": {
            "type": "string",
            "maxLength": 2000
          },
          "orcid": {
            "type": "string",
            "pattern": "^\\d{4}-\\d{4}-\\d{4}-\\d{3}[0-9X]$",
            "description": "ORCID identifier"
          },
          "avatar": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg"
            ],
            "maxSize": 1048576
          },
          "dblpId": {
            "type": "string",
            "maxLength": 200,
            "description": "DBLP author identifier (e.g., homepages/s/JohnSmith)"
          },
          "fieldUris": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "at-uri"
            },
            "maxLength": 20,
            "description": "AT-URIs of field nodes (subkind=field)"
          },
          "openAlexId": {
            "type": "string",
            "maxLength": 50,
            "description": "OpenAlex author ID (e.g., A5023888391)"
          },
          "displayName": {
            "type": "string",
            "maxLength": 200
          },
          "affiliations": {
            "type": "array",
            "items": {
              "ref": "pub.chive.defs#affiliation",
              "type": "ref"
            },
            "maxLength": 10,
            "description": "Current institutional affiliations with optional ROR IDs"
          },
          "nameVariants": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 200
            },
            "maxLength": 20,
            "description": "Alternative name forms for paper matching (e.g., maiden name, transliterations, initials like 'J. Smith')"
          },
          "openReviewId": {
            "type": "string",
            "maxLength": 100,
            "description": "OpenReview profile ID"
          },
          "arxivAuthorId": {
            "type": "string",
            "maxLength": 100,
            "description": "arXiv author identifier"
          },
          "schemaRevision": {
            "type": "integer",
            "minimum": 1,
            "description": "Schema revision this record was created with. Absent means revision 1."
          },
          "scopusAuthorId": {
            "type": "string",
            "maxLength": 50,
            "description": "Scopus author ID"
          },
          "googleScholarId": {
            "type": "string",
            "maxLength": 50,
            "description": "Google Scholar profile ID"
          },
          "researchKeywords": {
            "type": "array",
            "items": {
              "ref": "#keyword",
              "type": "ref"
            },
            "maxLength": 50,
            "description": "Research topics and keywords with optional authority IDs"
          },
          "semanticScholarId": {
            "type": "string",
            "maxLength": 50,
            "description": "Semantic Scholar author ID"
          },
          "previousAffiliations": {
            "type": "array",
            "items": {
              "ref": "pub.chive.defs#affiliation",
              "type": "ref"
            },
            "maxLength": 20,
            "description": "Past institutional affiliations that may appear on older papers"
          }
        }
      },
      "description": "Chive-specific author profile"
    },
    "keyword": {
      "type": "object",
      "required": [
        "label"
      ],
      "properties": {
        "label": {
          "type": "string",
          "maxLength": 100,
          "description": "Keyword label (display fallback if no topicUri)"
        },
        "fastId": {
          "type": "string",
          "maxLength": 20,
          "description": "FAST subject heading ID for legacy/external data"
        },
        "topicUri": {
          "type": "string",
          "format": "at-uri",
          "description": "AT-URI of topic node (subkind=topic)"
        },
        "wikidataId": {
          "type": "string",
          "maxLength": 20,
          "description": "Wikidata entity ID (e.g., Q12345) for legacy/external data"
        }
      },
      "description": "Research keyword referencing a topic node"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "revision": 2
}
```
