Type Alias Term

type Term = {
    abbreviation: string;
    categories?: string[];
    createdAt: string;
    createdBy: string;
    description: string;
    glossaryId: string;
    id: string;
    linksTo?: TermLinksTo[];
    name: string;
    referredRelations?: TermRelatesTo[];
    relatedInformation: string;
    relatesTo?: TermRelatesTo[];
    revision: number;
    status: TermStatus;
    stewards: string[];
    tags: string[];
    updatedAt: string;
    updatedBy: string;
}
Index

Properties

abbreviation: string
categories?: string[]
createdAt: string
createdBy: string
description: string
glossaryId: string
id: string
linksTo?: TermLinksTo[]
name: string
referredRelations?: TermRelatesTo[]
relatedInformation: string

Related information for the term. This is a rich text field represented as a JSON string. The field is typically generated by the UI but can be set programmatically using the rich text format.

relatesTo?: TermRelatesTo[]
revision: number
status: TermStatus
stewards: string[]
tags: string[]
updatedAt: string
updatedBy: string