export interface Collection { name: string; entities: Entity; } export interface Entity { name: string; properties: Property[]; } export interface Property { key: string; isNullable: boolean; type: "string"; }