Type Alias Glossary

type Glossary = {
    createdAt: string;
    createdBy: string;
    description: string;
    id: string;
    name: string;
    overview: string;
    ownerId: string;
    spaceId: string;
    tags: string[];
    termTemplate: TermTemplate;
    updatedAt: string;
    updatedBy: string;
}
Index

Properties

createdAt: string

Datetime when the glossary was created

createdBy: string
description: string
id: string
name: string
overview: string

Overview of the glossary contents. 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.

ownerId: string
spaceId: string
tags: string[]
termTemplate: TermTemplate
updatedAt: string
updatedBy: string