Type Alias ExportCategory

type ExportCategory = {
    description?: string;
    id?: string;
    name?: string;
    parentId?: string;
    stewardDetails?: StewardDetail[];
}
Index

Properties

description?: 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

The name of the category. May not be identical to another category belonging to the same parent.

parentId?: string
stewardDetails?: StewardDetail[]