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

interface IRequirementMetadata {
    author: string;
    completeness: string;
    consistency: string;
    content: string;
    correctness: string;
    dataQuality: string;
    description: string;
    external: ExternalDigitalPlatform;
    path: string[];
    rat: {
        numericQuality: string;
        qualityDate: string;
        qualityLevel: string;
        qualitySummary: string;
    };
    ref_extern: string;
    type: string;
    shema(): Record<string, any>;
}

Hierarchy (View Summary)

  • IMeta
    • IRequirementMetadata

Implemented by

Properties

author: string
completeness: string
consistency: string
content: string
correctness: string
dataQuality: string
description: string

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.

path: string[]
rat: {
    numericQuality: string;
    qualityDate: string;
    qualityLevel: string;
    qualitySummary: string;
}
ref_extern: string

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

type: string

Methods