Executor
draftA person appointed to administer an estate. Includes professional executors, administrators (intestacy), and administrators with will annexed.
executor.json — Core Entity
Properties(10)
| Property | Type | Required | Format | Description |
|---|---|---|---|---|
id | string | ✓ | uuid | |
personId | string | ✓ | uuid | Reference to a Person.id |
role | string | ✓ | (primary, secondary, substitute, administrator, administrator_with_will_annexed) | |
isProfessional | boolean | |||
firmName | string | Firm name if the executor is a professional (solicitor, accountant, trust corporation) | ||
grantType | string | Without a grant, the executor has no legal authority to administer the estate.(grant_of_probate, letters_of_administration, letters_of_administration_with_will_annexed, resealing, european_certificate_of_succession) | ||
grantDate | string | date | ||
grantReference | string | |||
issuingCourt | string | |||
notes | string |
Referenced By
The following schemas reference this one:
Raw JSON Schema
{
"$schema": "https://openinherit.org/v1/dialect.json",
"$id": "https://openinherit.org/v1/executor.json",
"title": "Executor",
"description": "A person appointed to administer an estate. Includes professional executors, administrators (intestacy), and administrators with will annexed.",
"type": "object",
"properties": {
"id": { "type": "string", "format": "uuid" },
"personId": {
"type": "string",
"format": "uuid",
"description": "Reference to a Person.id"
},
"role": {
"type": "string",
"enum": ["primary", "secondary", "substitute", "administrator", "administrator_with_will_annexed"]
},
"isProfessional": { "type": "boolean" },
"firmName": {
"type": "string",
"description": "Firm name if the executor is a professional (solicitor, accountant, trust corporation)"
},
"grantType": {
"type": "string",
"enum": [
"grant_of_probate",
"letters_of_administration",
"letters_of_administration_with_will_annexed",
"resealing",
"european_certificate_of_succession"
],
"$comment": "Without a grant, the executor has no legal authority to administer the estate."
},
"grantDate": { "type": "string", "format": "date" },
"grantReference": { "type": "string" },
"issuingCourt": { "type": "string" },
"notes": { "type": "string" }
},
"required": ["id", "personId", "role"],
"patternProperties": {
"^x-inherit-": {}
},
"unevaluatedProperties": false
}