UNPKG

@dpkit/ckan

Version:

Fast TypeScript data management framework built on top of the Data Package standard and Polars DataFrames

22 lines (21 loc) 333 B
/** * CKAN Organization interface */ export interface CkanOrganization { /** * Organization identifier */ id: string; /** * Organization name */ name: string; /** * Organization title */ title: string; /** * Organization description */ description: string; }