Person
An individual person involved in the insurance ecosystem. Represents brokers, underwriters, adjusters, producers, actuaries, and other professionals. Connects to organizations via PersonRole.
Structure
| Name | Card. | Type | Description |
|---|---|---|---|
| Person | An individual person involved in the insurance ecosystem. | ||
| resourceType | 1..1 | "Person" | Fixed resource type discriminator |
| id | 0..1 | string | Logical id of this resource. |
| meta | 0..1 | Meta | Metadata about the resource |
| status | 1..1 | active | inactive | Whether this person record is active |
| name | 1..1 | HumanName | The person's name |
| contact | 0..* | ContactPoint | Contact information (phone, email, etc.) |
| address | 0..* | Address | Physical and mailing addresses |
| designations | 0..* | Coding | Professional designations and certifications (CPCU, ARM, CIC, AU, AINS). terminology |
| licenses | 0..* | License | Insurance licenses held by this person |
| npn | 0..1 | string | National Producer Number from NIPR (National Insurance Producer Registry) |
| notes | 0..1 | string | Free-text notes about this person |
Example
json
{
"resourceType": "Person",
"id": "per-001",
"status": "active",
"name": {
"use": "official",
"text": "Sarah J. Chen, CPCU, ARM",
"family": "Chen",
"given": [
"Sarah",
"Jane"
],
"suffix": [
"CPCU",
"ARM"
]
},
"npn": "12345678",
"designations": [
{
"code": "CPCU",
"display": "Chartered Property Casualty Underwriter"
},
{
"code": "ARM",
"display": "Associate in Risk Management"
}
]
}JSON Schema
Full JSON Schema: Person.schema.json