Interface CweAncestorNode

A node in the ancestor tree returned by GET /cwe/{id}/ancestors. Each node references its parent chain recursively up to the view root.

interface CweAncestorNode {
    Data: CweRelationEntry;
    Parents: null | CweAncestorNode[];
}

Properties

Properties

This node's CWE entry data

Parents: null | CweAncestorNode[]

Parent nodes, or null if this node is the root