Type Alias Category

type Category = {
    createdAt: string;
    createdBy: string;
    description: string;
    glossaryId: string;
    id: string;
    name: string;
    parentId?: string;
    stewards?: string[];
    updatedAt: string;
    updatedBy: string;
}
Index

Properties

createdAt: string
createdBy: string
description: string
glossaryId: string
id: string

The id for resolving updates in future imports/updates. Opposed to the id of terms, id on category are not resolved by backend. Any category referred in the category array in terms will have to be identical to the id property of the category. If not, the category reference will be discarded.

name: string
parentId?: string
stewards?: string[]

This list contains the UIDs of the stewards of the category.

updatedAt: string
updatedBy: string

The uid of the user who last updated the category