Last active
March 19, 2018 17:18
-
-
Save rcackerman/a84d0bbf8e5ceda4740b6a8b3ed388dc to your computer and use it in GitHub Desktop.
Military Branches
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var branchStatusMatrix = { | |
| data: [{ | |
| branch: "airForce", | |
| options: [ | |
| { | |
| id: "discharged-deceased-retired", | |
| text: "Discharged, deceased, or retired" | |
| }, { | |
| id: "active", | |
| text: "active" | |
| }, { | |
| id: "tdrl", | |
| text: "TDRL" | |
| }, { | |
| id: "general-officers-w-pay", | |
| text: "General officers retired with pay" | |
| }, { | |
| id: "reserve", | |
| text: "Reserve" | |
| }, { | |
| id: "irr", | |
| text: "IRR" | |
| }, { | |
| id: "retired-reserve-non-pay", | |
| text: "Retired Reserve in non-pay status" | |
| }] | |
| }, { | |
| branch: "coastGuard", | |
| options: [ | |
| { | |
| id: "discharged-deceased-retired", | |
| text: "Discharged, deceased, or retired" | |
| }, { | |
| id: "active", | |
| text: "Active" | |
| }, { | |
| id: "reserve", | |
| text: "Reserve" | |
| }, { | |
| id: "individual-ready-reserve", | |
| text: "Individual Ready Reserve" | |
| }, { | |
| id: "tdrl", | |
| text: "TDRL" | |
| }] | |
| }, { | |
| branch: "marineCorps", | |
| options: [ | |
| { | |
| id: "discharged-deceased-retired", | |
| text: "Discharged, deceased, or retired" | |
| }, { | |
| id: "individual-ready-reserve", | |
| text: "Individual Ready Reserve" | |
| }, { | |
| id: "active", | |
| text: "Active" | |
| }, { | |
| id: "selected-marine-corps-reserve", | |
| text: "Selected Marine Corps Reserve" | |
| }, { | |
| id: "tdrl", | |
| text: "TDRL" | |
| }] | |
| }, { | |
| branch: "army", | |
| options: [ | |
| { | |
| id: "discharged-deceased-retired", | |
| text: "Discharged, deceased, or retired" | |
| }, { | |
| id: "active", | |
| text: "Active" | |
| }, { | |
| id: "reserve", | |
| text: "Reserve (including Individual Ready Reserve)" | |
| }] | |
| }, { | |
| branch: "navy", | |
| options: [ | |
| { | |
| id: "discharged-deceased-retired", | |
| text: "Discharged, deceased, or retired" | |
| }, { | |
| id: "active", | |
| text: "Active" | |
| }, { | |
| id: "reserve", | |
| text: "Reserve" | |
| }, { | |
| id: "tdrl", | |
| text: "TDRL" | |
| }] | |
| }, { | |
| branch: "publicHealthService", | |
| options: [ | |
| { | |
| id: "commissioned-corps-officers", | |
| text: "Public Health Service - Commissioned Crops officers only" | |
| }] | |
| }] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment