@dpkit/zenodo
Version:
Fast TypeScript data management framework built on top of the Data Package standard and Polars DataFrames
23 lines (20 loc) • 335 B
text/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
}>
}