Most obligations were concentrated in the Office of the Assistant Secretary for Administration and Management, which accounted for 187.17 million across 207 actions. U.S. Immigration and Customs Enforcement also obligated 38.08 million across 9 actions, with activity primarily mapped to NAICS 611519 and 561612.
Federal Contractor
MANAGEMENT & TRAINING CORPORATION Federal Contract Obligations (Last Year)
Management & Training Corporation (CAGE 3JBN8, UEI G58ZEJ7HJGM1) received 225.25 million across 216 award actions in the last full year.
Totals reflect the last full year of readable FPDS obligation data and may include a small negative adjustment in NAICS 541611.
About MANAGEMENT & TRAINING CORPORATION federal contract activity
MANAGEMENT & TRAINING CORPORATION recorded $225.25 million in obligated awards across 216 actions in the last full year, with an average award value of $1.04 million. The profile is highly concentrated, with most obligations tied to a single civilian agency and a narrow set of service classifications. The CAGE code is 3JBN8 and the UEI is G58ZEJ7HJGM1.
Agency mix and customer concentration
The award base was dominated by the OFFICE OF THE ASSISTANT SECRETARY FOR ADMINISTRATION AND MANAGEMENT, which accounted for $187.17 million across 207 awards, or the vast majority of total obligations. U.S. IMMIGRATION AND CUSTOMS ENFORCEMENT was the second-largest customer with $38.08 million across 9 awards. This indicates a strong reliance on two Department of Homeland Security-related buying channels, with one agency clearly carrying most of the spend.
Industry profile based on NAICS activity
NAICS 611519, OTHER TECHNICAL AND TRADE SCHOOLS, was the primary category at $187.20 million across 205 awards, closely tracking the firm’s largest agency relationship. NAICS 561612, SECURITY GUARDS AND PATROL SERVICES, represented the other major share at $38.08 million across 9 awards. NAICS 541611 showed a small negative obligated amount of $37.51 thousand across 2 awards, which suggests a limited amount of deobligation or adjustment activity rather than a material line of business.
Annual contract trend over the analysis window
The annual trend dataset shows all reported activity in 2025, with $225.25 million obligated across 216 awards. With only one year in scope, there is no multi-year growth pattern to assess from this window. The available data instead supports a point-in-time view of a large, concentrated award portfolio during the last full year.
How to interpret this page
This summary is based on FPDS award records for the last full year and aggregates obligated dollars and award counts associated with the vendor’s CAGE code and UEI. Agency and NAICS views reflect the largest reported obligations in the dataset, and negative obligated values are preserved as recorded to reflect adjustments or deobligations. Figures are rounded for readability and should be interpreted as FPDS-obligation totals, not revenue.
Top Agencies
SELECT
agency_id,
agency_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '3JBN8'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY agency_id
)
ORDER BY total_obligated DESC
LIMIT 10
| Agency ID | Agency Name | Total Obligated | Readable | Award Actions |
|---|---|---|---|---|
| 1605 | OFFICE OF THE ASSISTANT SECRETARY FOR ADMINISTRATION AND MANAGEMENT | 187,167,413.22 | 187.17 million | 207 |
| 7012 | U.S. IMMIGRATION AND CUSTOMS ENFORCEMENT | 38,083,184.71 | 38.08 million | 9 |
Insight
Management & Training Corporation’s last full year obligations were highly concentrated in one agency: the Office of the Assistant Secretary for Administration and Management accounted for $187.17 million across 207 awards, or about 83% of the vendor’s $225.25 million total. U.S. Immigration and Customs Enforcement represented the remaining $38.08 million across 9 awards, indicating a much smaller but still material second-source relationship. The award profile is broad in count but concentrated in obligated dollars, with an average award value of $1.04 million across 216 awards.
Top NAICS
SELECT
naics_code,
naics_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '3JBN8'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY naics_code
)
ORDER BY total_obligated DESC
LIMIT 10
| NAICS Code | Description | Total Obligated | Readable | Award Actions |
|---|---|---|---|---|
| 611519 | OTHER TECHNICAL AND TRADE SCHOOLS | 187,204,926.22 | 187.20 million | 205 |
| 561612 | SECURITY GUARDS AND PATROL SERVICES | 38,083,184.71 | 38.08 million | 9 |
| 541611 | ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES | -37,513.00 | -37.51 thousand | 2 |
Insight
Management & Training Corporation’s obligations are heavily concentrated in NAICS 611519, Other Technical and Trade Schools, which accounts for $187.20 million across 205 awards, or the clear majority of the $225.25 million obligated in the last full year. NAICS 561612, Security Guards and Patrol Services, is the only other material category, with $38.08 million across 9 awards, indicating a secondary but substantially smaller line of business. NAICS 541611 shows a negligible negative obligation of $37.51 thousand across 2 awards, which does not materially affect the overall distribution.
Annual Trend
SELECT
year,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '3JBN8'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
)
ORDER BY year DESC
| Year | Total Obligated | Readable | Award Actions |
|---|---|---|---|
| 2025 | 225,250,597.93 | 225.25 million | 216 |
Insight
Management & Training Corporation recorded $225.25 million in obligated value across 216 awards in the last full year, with an average award value of $1.04 million. Obligation activity is fully concentrated in FY 2025 within the 1-year window, indicating no year-over-year distribution within the provided period. The award count suggests a relatively broad transaction base despite the high total obligated value.
Use FPDS Query for deeper contractor analysis
Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, and annual trends.
Continue from this last full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.