# org.rcape.party

> Published by [ape.rcape.org](https://lexicon.garden/identity/did:plc:rju7piux7nfkb76ofze72uwn)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:rju7piux7nfkb76ofze72uwn/org.rcape.party)
- [Documentation](https://lexicon.garden/lexicon/did:plc:rju7piux7nfkb76ofze72uwn/org.rcape.party/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:rju7piux7nfkb76ofze72uwn/org.rcape.party/examples)

## Definitions

### `org.rcape.party`

**Type**: `record`

A party to the case and its attorneys of record.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes |  |
| `role` | `string` | No | e.g. 'Plaintiff', 'Defendant', 'Petitioner', 'Respondent', 'Amicus'. |
| `source` | `ref` → `org.rcape.docket#source` | No |  |
| `attorneys` | `array` | No |  |
| `createdAt` | `string` (datetime) | No |  |

### `org.rcape.party#attorney`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `firm` | `string` | No |  |
| `name` | `string` | Yes |  |
| `role` | `string` | No | e.g. 'Lead Attorney', 'Attorney to be Noticed'. |
| `email` | `string` | No |  |

## Raw Schema

```json
{
  "id": "org.rcape.party",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name"
        ],
        "properties": {
          "name": {
            "type": "string"
          },
          "role": {
            "type": "string",
            "description": "e.g. 'Plaintiff', 'Defendant', 'Petitioner', 'Respondent', 'Amicus'."
          },
          "source": {
            "ref": "org.rcape.docket#source",
            "type": "ref"
          },
          "attorneys": {
            "type": "array",
            "items": {
              "ref": "#attorney",
              "type": "ref"
            }
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A party to the case and its attorneys of record."
    },
    "attorney": {
      "type": "object",
      "required": [
        "name"
      ],
      "properties": {
        "firm": {
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "role": {
          "type": "string",
          "description": "e.g. 'Lead Attorney', 'Attorney to be Noticed'."
        },
        "email": {
          "type": "string"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
