Type Alias ValidateProjectDefinitionsReport

A single validation finding, including its severity, a human-readable description of the issue, and the location in the project definition where it was found.

type ValidateProjectDefinitionsReport = {
    level?: ValidateProjectDefinitionsReportLevel;
    path?: string;
    reason?: string;
}
Index

Severity of the validation finding. WARNING indicates a potential issue that does not block import; ERROR indicates a critical issue that must be resolved before importing.

path?: string

Path to the field or file in the project definition where the issue was found.

reason?: string

Human-readable description of the validation finding.