We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1604d5f commit f6dbfb5Copy full SHA for f6dbfb5
1 file changed
src/common/entities.ts
@@ -62,13 +62,13 @@ export type DataDictionaryPrefix = Record<string, string>;
62
* Model of a metadata dictionary containing a set of classes and their definitions.
63
*/
64
export interface DataDictionary {
65
- annotations: {
+ annotations?: {
66
[key in keyof DataDictionaryPrefix]: string; // Prefix to title e.g. "cxg": "CELLxGENE"
67
};
68
classes: Class[];
69
- description: string; // Free text description of data dictionary
+ description?: string; // Free text description of data dictionary
70
name: string; // Programmatic name or key (e.g. tier1, hca)
71
- prefixes: DataDictionaryPrefix;
+ prefixes?: DataDictionaryPrefix;
72
title: string; // Display name
73
}
74
0 commit comments