/** @type {string[]} */ export const schemaExports: string[]; /** * @typedef {import('./types.js').Application} Application * @typedef {import('./types.js').Dataset} Dataset * @typedef {import('./types.js').Field} Field */ export const schema: { $id: string; title: string; "x-exports": string[]; type: string; required: string[]; properties: { id: { type: string; description: string; }; title: { type: string; description: string; }; exposedUrl: { type: string; description: string; }; href: { type: string; description: string; }; wsUrl: { type: string; description: string; }; owner: { $ref: string; }; configuration: { type: string; description: string; additionalProperties: boolean; properties: { datasets: { type: string; items: { $ref: string; }; }; }; }; }; $defs: { dataset: { type: string[]; required: string[]; properties: { href: { type: string; }; id: { type: string; }; title: { type: string; }; key: { type: string; description: string; }; schema: { type: string; items: { $ref: string; }; }; finalizedAt: { type: string; format: string; }; }; }; field: { type: string; required: string[]; properties: { key: { type: string; }; type: { type: string; }; format: { type: string; }; title: { type: string; }; "x-originalName": { type: string; }; "x-group": { type: string; }; "x-refersTo": { deprecated: boolean; type: string[]; }; "x-concept": { type: string; properties: { id: { type: string; }; title: { type: string; }; primary: { type: string; }; }; }; "x-labels": { type: string; additionalProperties: { type: string; }; }; "x-labelsRestricted": { type: string; }; }; }; }; }; export type Application = import('./types.js').Application; export type Dataset = import('./types.js').Dataset; export type Field = import('./types.js').Field; //# sourceMappingURL=index.d.ts.map