UNPKG

@dpkit/ckan

Version:

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

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