Skip to content

IssuerAuthorizedSharesAdjustment

Object - Issuer Authorized Shares Adjustment Transaction#

https://raw.githubusercontent.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/main/schema/objects/transactions/adjustment/IssuerAuthorizedSharesAdjustment.schema.json

Description: Object describing an event to change the number of authoried shares at the issuer level.

Data Type: OCF Object - TX_ISSUER_AUTHORIZED_SHARES_ADJUSTMENT

Composed From:

Properties:

Property Type Description Required
id STRING Identifier for the object REQUIRED
comments [STRING] Unstructured text comments related to and stored for the object -
object_type Constant: TX_ISSUER_AUTHORIZED_SHARES_ADJUSTMENT
Defined in schema/enums/ObjectType
Object type field REQUIRED
date schema/types/Date Date on which the transaction occurred REQUIRED
issuer_id STRING Identifier of the Issuer object, a subject of this transaction REQUIRED
new_shares_authorized schema/types/Numeric The new number of shares authorized for this issuer as of the event of this transaction REQUIRED
board_approval_date schema/types/Date Date on which the board approved the change to the issuer -
stockholder_approval_date schema/types/Date Date on which the stockholders approved the change to the issuer -

Source Code: schema/objects/transactions/adjustment/IssuerAuthorizedSharesAdjustment

Examples:

[
  {
    "object_type": "TX_ISSUER_AUTHORIZED_SHARES_ADJUSTMENT",
    "id": "test-issuer-level-share-adjustment-minimal",
    "issuer_id": "ad98a30d-aeae-4282-affa-7b9fe033d5e6",
    "date": "2020-03-22",
    "new_shares_authorized": "10000000"
  },
  {
    "object_type": "TX_ISSUER_AUTHORIZED_SHARES_ADJUSTMENT",
    "id": "test-issuer-level-share-adjustment-all-fields",
    "issuer_id": "ad98a30d-aeae-4282-affa-7b9fe033d5e6",
    "date": "2020-03-22",
    "new_shares_authorized": "10000000",
    "board_approval_date": "2020-03-31",
    "stockholder_approval_date": "2020-04-01",
    "comments": [
      "comment-one",
      "comment-two",
      "..."
    ]
  }
]

Copyright © 2024 Open Cap Table Coalition.