# id.sifa.profile.position

> Published by [sifa.id](https://lexicon.garden/identity/did:plc:2f2ahswozqy4v5lvu676375y)

✓ This is the authoritative definition for this NSID.

## Description

A work experience entry in the user's professional profile.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:2f2ahswozqy4v5lvu676375y/id.sifa.profile.position)
- [Documentation](https://lexicon.garden/lexicon/did:plc:2f2ahswozqy4v5lvu676375y/id.sifa.profile.position/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:2f2ahswozqy4v5lvu676375y/id.sifa.profile.position/examples)

## Definitions

### `id.sifa.profile.position`

**Type**: `record`

Record representing a single work position or role.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `title` | `string` | Yes | Job title or role name. |
| `labels` | `union` | No | Self-label values for this position record. |
| `skills` | `array` | No | Skills used in this position. Each entry is a strongRef to an id.sifa.profile.skill record owned by the same DID. |
| `company` | `string` | Yes | Company or organization name. |
| `endedAt` | `string` (datetime) | No | End date of the position. Omit if this is a current position. |
| `location` | `ref` → `community.lexicon.location.address` | No | Work location. Uses community location lexicon. |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when this record was originally created. |
| `isPrimary` | `boolean` | No | Whether this is the user's primary current position, displayed on the identity card. |
| `startedAt` | `string` (datetime) | Yes | Start date of the position. For month-precision imports, use first day of month at midnight UTC. |
| `companyDid` | `string` (did) | No | DID of the company's ATproto account, if one exists. Enables verified company linking. |
| `description` | `string` | No | Description of responsibilities, achievements, and duties. |
| `workplaceType` | `string` | No | Workplace arrangement (on-site, remote, hybrid). |
| `employmentType` | `string` | No | Type of employment (full-time, part-time, contract, etc.). |

## Raw Schema

```json
{
  "id": "id.sifa.profile.position",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "company",
          "title",
          "startedAt",
          "createdAt"
        ],
        "properties": {
          "title": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "description": "Job title or role name.",
            "maxGraphemes": 100
          },
          "labels": {
            "refs": [
              "com.atproto.label.defs#selfLabels"
            ],
            "type": "union",
            "description": "Self-label values for this position record."
          },
          "skills": {
            "type": "array",
            "items": {
              "ref": "com.atproto.repo.strongRef",
              "type": "ref"
            },
            "maxLength": 50,
            "description": "Skills used in this position. Each entry is a strongRef to an id.sifa.profile.skill record owned by the same DID."
          },
          "company": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "description": "Company or organization name.",
            "maxGraphemes": 100
          },
          "endedAt": {
            "type": "string",
            "format": "datetime",
            "description": "End date of the position. Omit if this is a current position."
          },
          "location": {
            "ref": "community.lexicon.location.address",
            "type": "ref",
            "description": "Work location. Uses community location lexicon."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when this record was originally created."
          },
          "isPrimary": {
            "type": "boolean",
            "description": "Whether this is the user's primary current position, displayed on the identity card."
          },
          "startedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Start date of the position. For month-precision imports, use first day of month at midnight UTC."
          },
          "companyDid": {
            "type": "string",
            "format": "did",
            "description": "DID of the company's ATproto account, if one exists. Enables verified company linking."
          },
          "description": {
            "type": "string",
            "maxLength": 50000,
            "description": "Description of responsibilities, achievements, and duties.",
            "maxGraphemes": 5000
          },
          "workplaceType": {
            "type": "string",
            "description": "Workplace arrangement (on-site, remote, hybrid).",
            "knownValues": [
              "id.sifa.defs#onSite",
              "id.sifa.defs#remote",
              "id.sifa.defs#hybrid"
            ]
          },
          "employmentType": {
            "type": "string",
            "description": "Type of employment (full-time, part-time, contract, etc.).",
            "knownValues": [
              "id.sifa.defs#fullTime",
              "id.sifa.defs#partTime",
              "id.sifa.defs#contract",
              "id.sifa.defs#freelance",
              "id.sifa.defs#internship",
              "id.sifa.defs#apprenticeship",
              "id.sifa.defs#volunteer",
              "id.sifa.defs#selfEmployed"
            ]
          }
        }
      },
      "description": "Record representing a single work position or role."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A work experience entry in the user's professional profile."
}
```
