Open Cap Table Protocol Canton SDK - v0.2.84
    Preparing search index...

    Interface OcfIssuer

    OCF Issuer object according to the Open Cap Table Coalition schema Object describing the issuer of the cap table (the company whose cap table this is)

    interface OcfIssuer {
        address?: {
            address_type: "OTHER" | "LEGAL" | "CONTACT";
            city?: string;
            country: string;
            country_subdivision?: string;
            postal_code?: string;
            street_suite?: string;
        };
        comments?: string[];
        country_of_formation: string;
        country_subdivision_name_of_formation?: string;
        country_subdivision_of_formation?: string;
        dba?: string;
        email?: {
            email_address: string;
            email_type: "PERSONAL"
            | "BUSINESS"
            | "OTHER";
        };
        formation_date?: string;
        id?: string;
        initial_shares_authorized?: string
        | number;
        legal_name: string;
        object_type: "ISSUER";
        phone?: {
            phone_number: string;
            phone_type: "BUSINESS" | "OTHER" | "HOME" | "MOBILE";
        };
        tax_ids?: { country: string; tax_id: string }[];
    }
    Index

    Properties

    address?: {
        address_type: "OTHER" | "LEGAL" | "CONTACT";
        city?: string;
        country: string;
        country_subdivision?: string;
        postal_code?: string;
        street_suite?: string;
    }
    comments?: string[]
    country_of_formation: string
    country_subdivision_name_of_formation?: string
    country_subdivision_of_formation?: string
    dba?: string
    email?: { email_address: string; email_type: "PERSONAL" | "BUSINESS" | "OTHER" }
    formation_date?: string
    id?: string
    initial_shares_authorized?: string | number
    legal_name: string
    object_type: "ISSUER"
    phone?: {
        phone_number: string;
        phone_type: "BUSINESS" | "OTHER" | "HOME" | "MOBILE";
    }
    tax_ids?: { country: string; tax_id: string }[]