| digraph { |
| // Graph properties |
| bgcolor=transparent |
| |
| graph [ranksep="0.25", nodesep="0.25"]; |
| |
| // Nodes that define the key points in the process |
| node [shape=box;style=filled;fillcolor=white;fontsize=12] |
| search [label="Search for Existing CQ"] |
| piggyback_create [label="Create Piggyback CQ", group=g1] |
| piggyback_pmc [label="PMC Approval", group=g1] |
| piggyback_ip_team [label="IP Team Approval", group=g1] |
| |
| new_create [label="Create CQ", group=g2] |
| new_pmc [label="PMC Approval", group=g2] |
| new_cursory [label="Cursory Legal Review\nParallel IP Check-in Approval", group=g2] |
| new_detailed[ label="Detailed Legal Review", group=g2] |
| |
| final[label="Final Approval"] |
| |
| node [shape=diamond;style=filled;fillcolor=white;fontsize=10]; |
| search_found [label="Found?"] |
| parallel [label="Parallel IP?", group=g2] |
| |
| search -> search_found |
| search_found -> piggyback_create [label="Yes"] |
| piggyback_create -> piggyback_pmc -> piggyback_ip_team -> final |
| |
| search_found -> new_create [label="No"] |
| new_create -> new_pmc -> parallel |
| |
| parallel -> new_cursory [label="Yes"] |
| new_cursory -> new_detailed |
| |
| parallel -> new_detailed [label="No"] |
| |
| new_detailed -> final |
| } |