Startup Investments
Venture deals, organizations, people and exits
@kaggle.justinas_startup_investments
Venture deals, organizations, people and exits
@kaggle.justinas_startup_investments
CREATE TABLE acquisitions (
"id" BIGINT,
"acquisition_id" BIGINT,
"acquiring_object_id" VARCHAR,
"acquired_object_id" VARCHAR,
"term_code" VARCHAR,
"price_amount" DOUBLE,
"price_currency_code" VARCHAR,
"acquired_at" TIMESTAMP,
"source_url" VARCHAR,
"source_description" VARCHAR,
"created_at" TIMESTAMP,
"updated_at" TIMESTAMP
);
CREATE TABLE degrees (
"id" BIGINT,
"object_id" VARCHAR,
"degree_type" VARCHAR,
"subject" VARCHAR,
"institution" VARCHAR,
"graduated_at" TIMESTAMP,
"created_at" TIMESTAMP,
"updated_at" TIMESTAMP
);
CREATE TABLE funding_rounds (
"id" BIGINT,
"funding_round_id" BIGINT,
"object_id" VARCHAR,
"funded_at" TIMESTAMP,
"funding_round_type" VARCHAR,
"funding_round_code" VARCHAR,
"raised_amount_usd" DOUBLE,
"raised_amount" DOUBLE,
"raised_currency_code" VARCHAR,
"pre_money_valuation_usd" DOUBLE,
"pre_money_valuation" DOUBLE,
"pre_money_currency_code" VARCHAR,
"post_money_valuation_usd" DOUBLE,
"post_money_valuation" DOUBLE,
"post_money_currency_code" VARCHAR,
"participants" BIGINT,
"is_first_round" BIGINT,
"is_last_round" BIGINT,
"source_url" VARCHAR,
"source_description" VARCHAR,
"created_by" VARCHAR,
"created_at" TIMESTAMP,
"updated_at" TIMESTAMP
);
CREATE TABLE funds (
"id" BIGINT,
"fund_id" BIGINT,
"object_id" VARCHAR,
"name" VARCHAR,
"funded_at" TIMESTAMP,
"raised_amount" DOUBLE,
"raised_currency_code" VARCHAR,
"source_url" VARCHAR,
"source_description" VARCHAR,
"created_at" TIMESTAMP,
"updated_at" TIMESTAMP
);
CREATE TABLE investments (
"id" BIGINT,
"funding_round_id" BIGINT,
"funded_object_id" VARCHAR,
"investor_object_id" VARCHAR,
"created_at" TIMESTAMP,
"updated_at" TIMESTAMP
);
CREATE TABLE ipos (
"id" BIGINT,
"ipo_id" BIGINT,
"object_id" VARCHAR,
"valuation_amount" DOUBLE,
"valuation_currency_code" VARCHAR,
"raised_amount" DOUBLE,
"raised_currency_code" VARCHAR,
"public_at" TIMESTAMP,
"stock_symbol" VARCHAR,
"source_url" VARCHAR,
"source_description" VARCHAR,
"created_at" TIMESTAMP,
"updated_at" TIMESTAMP
);
CREATE TABLE milestones (
"id" BIGINT,
"object_id" VARCHAR,
"milestone_at" TIMESTAMP,
"milestone_code" VARCHAR,
"description" VARCHAR,
"source_url" VARCHAR,
"source_description" VARCHAR,
"created_at" TIMESTAMP,
"updated_at" TIMESTAMP
);
CREATE TABLE objects (
"id" VARCHAR,
"entity_type" VARCHAR,
"entity_id" BIGINT,
"parent_id" VARCHAR,
"name" VARCHAR,
"normalized_name" VARCHAR,
"permalink" VARCHAR,
"category_code" VARCHAR,
"status" VARCHAR,
"founded_at" TIMESTAMP,
"closed_at" TIMESTAMP,
"domain" VARCHAR,
"homepage_url" VARCHAR,
"twitter_username" VARCHAR,
"logo_url" VARCHAR,
"logo_width" BIGINT,
"logo_height" BIGINT,
"short_description" VARCHAR,
"description" VARCHAR,
"overview" VARCHAR,
"tag_list" VARCHAR,
"country_code" VARCHAR,
"state_code" VARCHAR,
"city" VARCHAR,
"region" VARCHAR,
"first_investment_at" TIMESTAMP,
"last_investment_at" TIMESTAMP,
"investment_rounds" BIGINT,
"invested_companies" BIGINT,
"first_funding_at" TIMESTAMP,
"last_funding_at" TIMESTAMP,
"funding_rounds" BIGINT,
"funding_total_usd" DOUBLE,
"first_milestone_at" TIMESTAMP,
"last_milestone_at" TIMESTAMP,
"milestones" BIGINT,
"relationships" BIGINT,
"created_by" VARCHAR,
"created_at" TIMESTAMP,
"updated_at" TIMESTAMP
);
CREATE TABLE offices (
"id" BIGINT,
"object_id" VARCHAR,
"office_id" BIGINT,
"description" VARCHAR,
"region" VARCHAR,
"address1" VARCHAR,
"address2" VARCHAR,
"city" VARCHAR,
"zip_code" VARCHAR,
"state_code" VARCHAR,
"country_code" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE,
"created_at" VARCHAR,
"updated_at" VARCHAR
);
CREATE TABLE people (
"id" BIGINT,
"object_id" VARCHAR,
"first_name" VARCHAR,
"last_name" VARCHAR,
"birthplace" VARCHAR,
"affiliation_name" VARCHAR
);
CREATE TABLE relationships (
"id" BIGINT,
"relationship_id" BIGINT,
"person_object_id" VARCHAR,
"relationship_object_id" VARCHAR,
"start_at" TIMESTAMP,
"end_at" TIMESTAMP,
"is_past" BIGINT,
"sequence" BIGINT,
"title" VARCHAR,
"created_at" TIMESTAMP,
"updated_at" TIMESTAMP
);
Anyone who has the link will be able to view this.