Describing the metadata present in all the nodes of a project.

interface IUserMetadata {
    alias: string;
    description: any;
    email: string;
    external: ExternalDigitalPlatform;
    first_name: string;
    groups: string[];
    last_name: string;
    path: string[];
    ref_extern: string;
    shema(): Record<string, any>;
}

Hierarchy (View Summary)

Implemented by

Properties

alias: string
description: any

The description property is used to store a string that provides a description or additional information about a particular entity. It is commonly used in metadata interfaces to provide a description of the entity being described. For example, in the IMetadata interface, the description property is used to describe the metadata of a node, such as a requirement, test, or structure.

email: string
first_name: string
groups: string[]
last_name: string
path: string[]
ref_extern: string

ref_extern property is used to store a reference to an external system, which can be an id or token.

Methods