{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "https://raw.githubusercontent.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/main/schema/objects/transactions/adjustment/StockClassAuthorizedSharesAdjustment.schema.json", "title": "Object - Stock Class Authorized Shares Adjustment Transaction", "description": "Object describing an event to change the number of authorized shares of a stock class.", "type": "object", "allOf": [ { "$ref": "https://raw.githubusercontent.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/main/schema/primitives/objects/Object.schema.json" }, { "$ref": "https://raw.githubusercontent.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/main/schema/primitives/objects/transactions/Transaction.schema.json" }, { "$ref": "https://raw.githubusercontent.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/main/schema/primitives/objects/transactions/StockClassTransaction.schema.json" } ], "properties": { "object_type": { "const": "TX_STOCK_CLASS_AUTHORIZED_SHARES_ADJUSTMENT" }, "id": {}, "comments": {}, "date": {}, "stock_class_id": {}, "new_shares_authorized": { "description": "The new number of shares authorized for this stock class as of the event of this transaction", "$ref": "https://raw.githubusercontent.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/main/schema/types/Numeric.schema.json" }, "board_approval_date": { "description": "Date on which the board approved the change to the stock class", "$ref": "https://raw.githubusercontent.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/main/schema/types/Date.schema.json" }, "stockholder_approval_date": { "description": "This optional field tracks when the stockholders approved the change to the stock class.", "$ref": "https://raw.githubusercontent.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/main/schema/types/Date.schema.json" } }, "additionalProperties": false, "required": ["new_shares_authorized"], "$comment": "Copyright © 2026 Open Cap Table Coalition (https://opencaptablecoalition.com) / Original File: https://github.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/tree/main/schema/objects/transactions/adjustment/StockClassAuthorizedSharesAdjustment.schema.json" }