Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 | 105x | export type divisionsType = {
id: number;
abbr?: string;
name: string;
};
export type groupDivisionType = {
id: number;
abbr: string;
name: string;
divisions: divisionsType[];
};
export const groupDivision = [
{
id: 0,
abbr: "MBHPG",
name: "Disabled & Elderly Health Programs Group",
divisions: [
{ id: 10, abbr: "DHPC", name: "Div of Health Homes, PACE & COB/TPL" },
{ id: 11, abbr: "DBC", name: "Div of Benefits & Coverage" },
{ id: 12, abbr: "DLTSS", name: "Div of Long Term Services & Supports" },
{ id: 13, abbr: "DCST", name: "Div of Community Systems Transformation" },
{ id: 14, abbr: "DP", name: "Div of Pharmacy" },
{ id: 15, abbr: "MBHPG", name: "MBHPG - Office of Group Director" },
],
},
{
id: 1,
abbr: "CAHPG",
name: "Children & Adults Health Programs Group",
divisions: [
{ id: 16, abbr: "DSCP", name: "Div of State Coverage Programs" },
{ id: 17, abbr: "DQHO", name: "Div of Quality & Health Outcomes" },
{ id: 18, abbr: "DMEP", name: "Div of Medicaid Eligibility Policy" },
{ id: 19, abbr: "DEPO", name: "Div of Enrollment Policy & Operations" },
{ id: 20, abbr: "DTA", name: "Div of Tribal Affairs" },
{ id: 21, abbr: "CAHPG", name: "CAHPG - Office of Group Director" },
],
},
{
id: 3,
abbr: "FMG",
name: "Financial Management Group",
divisions: [
{ id: 23, abbr: "DRR", name: "Div of Reimbursement Review" },
{ id: 24, abbr: "DRP", name: "Div of Reimbursement Policy" },
{ id: 25, abbr: "DFOE", name: "Div of Financial Operations East" },
{ id: 26, abbr: "DFOW", name: "Div of Financial Operations West" },
{ id: 27, abbr: "DFP", name: "Div of Financial Policy" },
{ id: 28, abbr: "FMG", name: "FMG - Office of Group Director" },
],
},
{
id: 4,
abbr: "DSG",
name: "Data & Systems Group",
divisions: [
{ id: 29, abbr: "DSS", name: "Div of State Systems" },
{ id: 30, abbr: "DIS", name: "Div of Information Systems" },
{ id: 31, abbr: "DBES", name: "Div of Business Essential Systems" },
{ id: 32, abbr: "DBDA", name: "Div of Business & Data Analysis" },
{ id: 33, abbr: "DHM", name: "Div of Hitech & Mmis" },
{ id: 34, abbr: "DSG", name: "DSG - Office of Group Director" },
],
},
{
id: 5,
abbr: "OSG",
name: "Operations Services Group",
divisions: [
{ id: 35, abbr: "DBA", name: "Div of Budget & Acquisitions" },
{ id: 36, abbr: "DOES", name: "Div of Operations & Executive Support" },
{ id: 37, abbr: "DHC", name: "Div of Human Capital" },
{ id: 38, abbr: "DCO", name: "Div of Communications & Outreach" },
{ id: 39, abbr: "OSG", name: "OSG - Office of Group Director" },
],
},
{
id: 6,
abbr: "SDG",
name: "State Demonstrations Group",
divisions: [
{ id: 40, abbr: "DECD", name: "Div of Eligibility & Coverage Demonstrations" },
{ id: 41, abbr: "DSRD", name: "Div of System Reform Demonstrations" },
{ id: 42, abbr: "DDME", name: "Div of Demonstration Monitoring & Evaluation" },
{ id: 43, abbr: "SDG", name: "SDG - Office of Group Director" },
],
},
{
id: 7,
abbr: "MCOG",
name: "Medicaid & CHIP Operations Group",
divisions: [
{ id: 44, abbr: "DPO", name: "Div of Program Operations" },
{ id: 46, abbr: "DHCBSO", name: "Div of HCBS Operations & Oversight" },
{ id: 47, abbr: "MCOG", name: "MCOG - Office of Group Director" },
],
},
{
id: 8,
abbr: "OCD",
name: "Office of Center Director",
divisions: [{ id: 48, abbr: "OCD", name: "OCD - Office of Group Director" }],
},
{
id: 9,
abbr: "MCG",
name: "Managed Care Group",
divisions: [
{ id: 49, abbr: "DMCP", name: "Div of Managed Care Policy" },
{ id: 50, abbr: "DMCO", name: "Div of Managed Care Operations" },
],
},
];
|