Vesting schedule template
Vesting Schedule Template
Endpoints: GET /v1alpha1/issuers/{issuerId}/vestingScheduleTemplates
Description: Details of a vesting schedule template.
Referenced By (1): - List Vesting Schedule Templates Response
References (2): - Vesting Period - Vesting Schedule Type
Example:
{
"id": "1",
"uuid": "550e8400-e29b-41d4-a716-446655440000",
"issuerId": "7",
"name": "1/24, No Cliff",
"description": "Shares vest monthly for the next 24 months on the same day as the start date.",
"vestingScheduleType": "DATE",
"periods": [
{
"order": 1,
"percentage": "100",
"vestingMethod": "MONTHLY",
"vestingOccurs": "SAME_DAY_AS_START_DATE",
"length": 24,
"lengthUnit": "MONTH"
}
]
}
Properties:
| Property | Type | Description | Required |
|---|---|---|---|
description |
STRING |
The description of the vesting schedule template. Constraints: Max length: 1000 |
- |
id |
STRING |
The identifier of the vesting schedule template. Constraints: Max length: 50 |
- |
issuerId |
STRING |
The identifier of the issuer to which this vesting schedule template belongs. Constraints: Max length: 50 |
- |
name |
STRING |
The name of the vesting schedule template. Constraints: Max length: 500 |
- |
periods |
[Array of Vesting Period] |
The vesting periods that define how shares vest. | - |
uuid |
STRING |
The UUID of the vesting schedule template. Constraints: Min length: 36, Max length: 36 |
- |
vestingScheduleType |
Vesting Schedule Type | The type of vesting schedule found within this template. | - |