Skip to content

Instantly share code, notes, and snippets.

@horner
Last active December 9, 2024 08:01
Show Gist options
  • Select an option

  • Save horner/d9bf49af70b235a6c7f4d7e5b92f8d89 to your computer and use it in GitHub Desktop.

Select an option

Save horner/d9bf49af70b235a6c7f4d7e5b92f8d89 to your computer and use it in GitHub Desktop.
{
nodes: {
CEO: {
title: "CEO",
name: "John Doe",
children: ['CFO', 'CTO', 'COO', 'CMO', 'CHRO', 'CIO', 'CSO', 'CDO', 'CRO', 'CLO']
},
CTO: {
title: "Chief Technology Officer",
name: "Michael Rodriguez",
children: ['Tech1', 'Tech2', 'Tech3']
},
Tech1: {
title: "VP Engineering",
name: "Steve Park",
children: ['Eng1', 'Eng2']
},
Eng1: {
title: "Frontend Director",
name: "Alice Johnson",
children: ['FE1', 'FE2']
},
FE1: {
title: "Frontend Team Lead",
name: "Tim Chen",
children: []
},
FE2: {
title: "UX Team Lead",
name: "Maria Lopez",
children: []
},
Eng2: {
title: "Backend Director",
name: "David Smith",
children: ['BE1', 'BE2']
},
BE1: {
title: "Backend Team Lead",
name: "Ryan Wilson",
children: []
},
BE2: {
title: "DevOps Team Lead",
name: "Sarah Lee",
children: []
},
Tech2: {
title: "VP Product",
name: "Rachel Green",
children: ['Prod1', 'Prod2']
},
Prod1: {
title: "Product Director",
name: "James Taylor",
children: []
},
Prod2: {
title: "Design Director",
name: "Emma Davis",
children: []
},
Tech3: {
title: "VP Infrastructure",
name: "Alex Kumar",
children: ['Infra1', 'Infra2']
},
Infra1: {
title: "Cloud Director",
name: "Tom Anderson",
children: []
},
Infra2: {
title: "Security Director",
name: "Lisa Chen",
children: []
},
COO: {
title: "Chief Operating Officer",
name: "Emma Thompson",
children: ['Ops1', 'Ops2', 'Ops3']
},
Ops1: {
title: "VP Global Operations",
name: "Chris Black",
children: ['GOps1', 'GOps2']
},
GOps1: {
title: "Regional Director APAC",
name: "Andrew Tan",
children: ['APAC1', 'APAC2']
},
APAC1: {
title: "Country Manager China",
name: "Li Wei",
children: []
},
APAC2: {
title: "Country Manager Japan",
name: "Yuki Tanaka",
children: []
},
GOps2: {
title: "Regional Director EMEA",
name: "Sophie Martin",
children: ['EMEA1', 'EMEA2']
},
EMEA1: {
title: "Country Manager UK",
name: "Oliver Brown",
children: []
},
EMEA2: {
title: "Country Manager Germany",
name: "Hans Mueller",
children: []
},
Ops2: {
title: "VP Supply Chain",
name: "Diana Martinez",
children: ['Supply1', 'Supply2']
},
Supply1: {
title: "Logistics Director",
name: "Mark Johnson",
children: []
},
Supply2: {
title: "Procurement Director",
name: "Helen Wong",
children: []
},
Ops3: {
title: "VP Quality",
name: "Robert Kim",
children: ['Quality1', 'Quality2']
},
Quality1: {
title: "QA Director",
name: "Peter Zhang",
children: []
},
Quality2: {
title: "Process Improvement Director",
name: "Anna Garcia",
children: []
},
CFO: {
title: "Chief Financial Officer",
name: "Sarah Chen",
children: ['Finance1', 'Finance2']
},
Finance1: { title: "Finance Director", name: "Tom Clark", children: [] },
Finance2: { title: "Controller", name: "Anna White", children: [] },
CMO: {
title: "Chief Marketing Officer",
name: "David Kim",
children: ['Marketing1', 'Marketing2']
},
Marketing1: { title: "Brand Director", name: "Kevin O'Brien", children: [] },
Marketing2: { title: "Digital Marketing Director", name: "Sophie Zhang", children: [] },
CHRO: {
title: "Chief HR Officer",
name: "Lisa Patel",
children: ['HR1', 'HR2']
},
HR1: { title: "HR Director", name: "Michelle Wong", children: [] },
HR2: { title: "Talent Director", name: "Brian Taylor", children: [] },
CIO: {
title: "Chief Innovation Officer",
name: "James Wilson",
children: ['Innovation1', 'Innovation2']
},
Innovation1: { title: "R&D Director", name: "Raj Patel", children: [] },
Innovation2: { title: "Innovation Director", name: "Laura Miller", children: [] },
CSO: {
title: "Chief Strategy Officer",
name: "Maria Garcia",
children: ['Strategy1', 'Strategy2']
},
Strategy1: { title: "Corporate Strategy Director", name: "Thomas Anderson", children: [] },
Strategy2: { title: "Business Development Director", name: "Nina Costa", children: [] },
CDO: {
title: "Chief Data Officer",
name: "Alex Johnson",
children: ['Data1', 'Data2']
},
Data1: { title: "Data Analytics Director", name: "Jeff Chang", children: [] },
Data2: { title: "Data Science Director", name: "Sarah Smith", children: [] },
CRO: {
title: "Chief Risk Officer",
name: "Robert Lee",
children: ['Risk1', 'Risk2']
},
Risk1: { title: "Risk Assessment Director", name: "Mark Wilson", children: [] },
Risk2: { title: "Compliance Director", name: "Helen Davis", children: [] },
CLO: {
title: "Chief Legal Officer",
name: "Patricia Brown",
children: ['Legal1', 'Legal2']
},
Legal1: { title: "Corporate Counsel", name: "Daniel Murphy", children: [] },
Legal2: { title: "IP Counsel", name: "Jessica Lee", children: [] }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment