@dpkit/zenodo
Version:
Fast TypeScript data management framework built on top of the Data Package standard and Polars DataFrames
21 lines (20 loc) • 372 B
TypeScript
/**
* Zenodo Creator interface
*/
export interface ZenodoCreator {
/**
* Creator name (format: Family name, Given names)
*/
name: string;
/**
* Creator affiliation
*/
affiliation?: string;
/**
* Creator identifiers (e.g., ORCID)
*/
identifiers?: Array<{
identifier: string;
scheme: string;
}>;
}