Skip to content

Vis4Sense/vast-2024-mc3

Repository files navigation

VAST Challenge 2024 MC3

Quick Start

Start development server with: npm run dev

Or, build with npm run build

Data

export interface RawDataEntry {
    _last_edited_by: String,
    _last_edited_date: Date,
    _date_added: Date,
    _raw_source: String,
    _algorithm: String,
}

export interface RawEntity extends RawDataEntry{
    type: String,
    id: String,
    country: String,
}

export interface RawPerson extends RawEntity {
    dob: Date,
}

export interface RawOrganization extends RawEntity {
    founding_date: String,
    HeadOfOrg: String,
    ProductServices: String,
    TradeDescription: String,
    PointOfContact: String,
    revenue: Number,
}

export interface RawLink extends RawDataEntry{
    type: String,
    start_date: Date,
    end_date: Date,
}

About

Code (web) for VAST Challenge 2024 MC3

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages