{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "https://raw.githubusercontent.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/main/schema/types/vesting/VestingPeriodInMonths.schema.json", "title": "Type - Vesting Period in Months", "description": "Describes a period of time expressed in months (e.g. 3 months) for use in Vesting Terms.", "type": "object", "allOf": [ { "$ref": "https://raw.githubusercontent.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/main/schema/primitives/types/vesting/VestingPeriod.schema.json" } ], "properties": { "length": {}, "type": { "const": "MONTHS" }, "occurrences": {}, "day_of_month": { "description": "The calendar day of a month to award vesting.", "$ref": "https://raw.githubusercontent.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/main/schema/enums/VestingDayOfMonth.schema.json" }, "cliff_installment": {} }, "required": ["day_of_month"], "additionalProperties": false, "$comment": "Copyright © 2025 Open Cap Table Coalition (https://opencaptablecoalition.com) / Original File: https://github.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/tree/main/schema/types/vesting/VestingPeriodInMonths.schema.json" }