Federal Contractor

VECTRUS SYSTEMS CORPORATION Federal Contract Obligations (Last 5 Years)

FPDS procurement profile for VECTRUS SYSTEMS CORPORATION (CAGE 1D510, UEI RRFJZGASZJ41) covering the last 5 years of federal obligations and award activity.

VECTRUS SYSTEMS CORPORATION recorded 3,907 award actions totaling $8,053,811,331.65 over the last 5 years, with an average action value of $2,061,379.91. Most obligations came from the Department of the Army, and the largest NAICS category was Facilities Support Services.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect readable FPDS obligations for the selected 5-year analysis window and may include multiple actions tied to the same award.

CAGE Code
1D510
UEI
RRFJZGASZJ41
Total Obligated
8.05 billion
8,053,811,331.65
Award Actions
3,907
Average Action Value
2,061,379.91

About VECTRUS SYSTEMS CORPORATION federal contract activity

VECTRUS SYSTEMS CORPORATION, identified by CAGE 1D510 and UEI RRFJZGASZJ41, recorded 8.05 billion in obligated federal awards across 3,907 actions in the last 5 years, with an average award value of 2.06 million. The profile indicates a large, recurring federal vendor footprint rather than a small number of high-value transactions. The award base is heavily concentrated in defense-related spending and service delivery contracts.

Agency mix and customer concentration

The DEPT OF THE ARMY is the dominant customer, accounting for 6.18 billion and 943 awards, or the large majority of obligated value in the period. The DEPT OF THE NAVY and DEPT OF THE AIR FORCE are the next-largest agencies by dollars, at 937.99 million and 821.08 million respectively, indicating broad defense-market reliance. Outside the core defense portfolio, activity is materially smaller, with the DEPARTMENT OF STATE at 100.03 million and the DEFENSE LOGISTICS AGENCY showing a high award count but relatively low obligated value.

Industry profile based on NAICS activity

The vendor’s spending profile is concentrated in facilities and base support work, led by NAICS 561210, Facilities Support Services, at 7.05 billion and 2,013 awards. Secondary lines of business include Communication Equipment Repair and Maintenance, Engineering Services, Food Service Contractors, and Computer Facilities Management Services, which together suggest an operations, sustainment, and technical support mix. The NAICS distribution is consistent with integrated installation support and mission-enabling services rather than product-centric procurement.

Annual contract trend over the analysis window

Annual obligated value peaked in 2023 at 2.14 billion, then declined to 1.50 billion in 2024 before increasing to 1.88 billion in 2025. Award volume moved differently from dollars, rising sharply in 2025 to 1,528 awards after 972 in 2024 and 536 in 2023, which points to smaller or more fragmented awards in the most recent year. The five-year pattern shows sustained high activity with year-to-year variability but no interruption in federal demand.

How to interpret this page

This summary is based on FPDS award data for the vendor name, CAGE code, and UEI within the last 5 years. Metrics reflect obligated dollars and award counts aggregated across the analysis window and grouped by awarding agency, NAICS code, and fiscal year. The narrative is limited to the supplied dataset and does not infer contract type, task order structure, or performance scope beyond the observed spending patterns.

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 = '1D510'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
2100 DEPT OF THE ARMY 6,177,492,703.02 6.18 billion 943
1700 DEPT OF THE NAVY 937,985,362.05 937.99 million 1,192
5700 DEPT OF THE AIR FORCE 821,082,736.41 821.08 million 402
1900 STATE, DEPARTMENT OF 100,027,707.56 100.03 million 29
97AS DEFENSE LOGISTICS AGENCY 11,069,617.18 11.07 million 1,236
97F5 WASHINGTON HEADQUARTERS SERVICES (WHS) 8,586,878.37 8.59 million 12
7524 FOOD AND DRUG ADMINISTRATION 748,155.99 748.16 thousand 2
7012 U.S. IMMIGRATION AND CUSTOMS ENFORCEMENT 250.00 250.00 1
7014 U.S. CUSTOMS AND BORDER PROTECTION -29,096.09 -29.10 thousand 2
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -3,152,982.84 -3.15 million 88

Insight

VECTRUS SYSTEMS CORPORATION’s obligations over the last 5 years are heavily concentrated in the DEPT OF THE ARMY, which accounts for $6.18 billion of $8.05 billion total obligated, or about 77% of overall spend. The DEPT OF THE NAVY and DEPT OF THE AIR FORCE are the next largest buyers at $937.99 million and $821.08 million, respectively, indicating a predominantly defense-oriented customer base. Outside the Department of Defense, obligations are materially smaller, led by the DEPT OF STATE at $100.03 million, while several agencies show limited or net-negative obligation levels.

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 = '1D510'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
561210 FACILITIES SUPPORT SERVICES 7,054,484,580.29 7.05 billion 2,013
811213 COMMUNICATION EQUIPMENT REPAIR AND MAINTENANCE 524,644,477.53 524.64 million 80
541330 ENGINEERING SERVICES 256,589,057.37 256.59 million 246
722310 FOOD SERVICE CONTRACTORS 53,949,385.73 53.95 million 32
541513 COMPUTER FACILITIES MANAGEMENT SERVICES 47,651,452.81 47.65 million 51
541519 OTHER COMPUTER RELATED SERVICES 33,226,420.06 33.23 million 32
517810 ALL OTHER TELECOMMUNICATIONS 32,393,758.01 32.39 million 9
541614 PROCESS, PHYSICAL DISTRIBUTION, AND LOGISTICS CONSULTING SERVICES 13,068,029.80 13.07 million 21
541611 ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES 8,803,745.62 8.80 million 47
336611 SHIP BUILDING AND REPAIRING 7,257,959.15 7.26 million 46

Insight

Over the last 5 years, VECTRUS SYSTEMS CORPORATION’s obligations are highly concentrated in NAICS 561210, Facilities Support Services, at $7.05 billion across 2,013 awards, representing the clear dominant share of the firm’s $8.05 billion total. The next largest NAICS, 811213 and 541330, are materially smaller at $524.64 million and $256.59 million, indicating a steep drop-off after the primary service line. Remaining obligations are dispersed across several lower-dollar NAICS codes, including food service, computer support, telecommunications, logistics consulting, management consulting, and ship repair, suggesting a broad but secondary portfolio beyond facilities support.

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 = '1D510'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 1,879,097,637.73 1.88 billion 1,528
2024 1,496,756,510.98 1.50 billion 972
2023 2,138,257,414.44 2.14 billion 536
2022 1,146,642,988.37 1.15 billion 435
2021 1,393,056,780.13 1.39 billion 436

Insight

VECTRUS SYSTEMS CORPORATION (CAGE 1D510) obligated 8.05 billion across 3,907 awards over the last 5 years, with an average award value of 2.06 million. Obligations were unevenly distributed, peaking in 2023 at 2.14 billion, then declining in 2024 to 1.50 billion before rebounding in 2025 to 1.88 billion. Award volume was highest in 2025 at 1,528 awards, indicating a shift toward a larger number of lower-value actions in the most recent year relative to earlier periods.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.