Interface CweView

Full view entry returned by GET /cwe/view/{id}.

interface CweView {
    Audience?: CweViewAudience[];
    ID: string;
    Members?: CweViewMember[];
    Name: string;
    Objective?: string;
    Status: string;
    Type: string;
}

Properties

Audience?: CweViewAudience[]

Intended audiences for this view

ID: string

CWE identifier string (e.g. '1425')

Members?: CweViewMember[]

CWE entries that are members of this view

Name: string

View name

Objective?: string

Objective description of the view

Status: string

Status (e.g. 'Draft', 'Stable', 'Deprecated')

Type: string

View type (e.g. 'Graph', 'Explicit', 'Implicit')