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

interface IProjectMetadata {
    category: string;
    description: string;
    external: ExternalDigitalPlatform;
    path: string[];
    ref_extern: string;
    site: { id: string; url: string };
    status: string;
    shema(): Record<string, any>;
}

Hierarchy (View Summary)

Implemented by

Properties

category: string

project_category

description: string

project_description

path: string[]
ref_extern: string

VV-DBXXX

site: { id: string; url: string }
status: string

project_status

Methods