Interface CweDescendantNode

A node in the descendant tree returned by GET /cwe/{id}/descendants. Each node references its children recursively down to leaf entries.

interface CweDescendantNode {
    Children: null | CweDescendantNode[];
    Data: CweRelationEntry;
}

Properties

Properties

Children: null | CweDescendantNode[]

Child nodes, or null if this node is a leaf

This node's CWE entry data