Type Alias ExportTerm

type ExportTerm = {
    abbreviation?: string;
    categories?: string[];
    description?: string;
    id?: string;
    linksTo?: TermCreateLinksTo[];
    name?: string;
    owner?: ImportOwner[];
    relatesTo?: TermRelatesTo[];
    stewardDetails?: StewardDetail[];
    stewards?: StewardDetail[];
    tags?: string[];
}
Index

Properties

abbreviation?: string
categories?: string[]

Categories that the term belongs to. Refers to the id property of the category object

description?: string
id?: string

The id of the term. Used to identify the term in future updates. If not provided, will use the leading 30 chars of the term name and an incremental index

linksTo?: TermCreateLinksTo[]
name?: string
owner?: ImportOwner[]
relatesTo?: TermRelatesTo[]
stewardDetails?: StewardDetail[]
stewards?: StewardDetail[]
tags?: string[]