Type Alias CreateTerm

type CreateTerm = {
    abbreviation?: string;
    categories?: string[];
    description?: string;
    linksTo?: TermCreateLinksTo[];
    name: string;
    relatedInformation?: string;
    relatesTo?: TermRelatesTo[];
    stewards?: string[];
    tags?: string[];
}
Index

Properties

abbreviation?: string
categories?: string[]
description?: string
linksTo?: TermCreateLinksTo[]
name: string
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[]
stewards?: string[]
tags?: string[]