Award Number

Award Number 9700 / W56HZV15C0095 Federal Contract Action Summary (Last 10 Years)

Federal award record for award number W56HZV15C0095 under agency ID 9700, showing obligations and action history over the last 10 years.

This page summarizes the federal award identified by PIID W56HZV15C0095 for agency ID 9700. Over the last 10 years, the award shows $5.99 billion in total obligations across 1,132 actions.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and may differ from other views if filters or reporting periods change.

Agency ID
9700
PIID
W56HZV15C0095
Type
Award
Total Obligated
5.99 billion
5,989,589,587.56
Actions
1,132
Average Action Value
5,291,156.88

Overview

The award record for W56HZV15C0095 shows 1,132 recorded actions over the last 10 years, with total obligated dollars of 5,989,589,587.56. The average action value is 5,291,156.88, indicating a high-volume award history with substantial dollar movement across the period.

How to use this page

Use this page to review the award’s obligation total, action count, and average action value in one place. It is useful for comparing this award against other records in agency ID 9700 or for tracking activity trends within the selected 10-year window.

Top Agencies

SELECT
    content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'W56HZV15C0095'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    agency_id,
    agency_name
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Actions
2100 DEPT OF THE ARMY 5,989,589,587.56 5.99 billion 1,132

Insight

Over the 10-year window for award PIID W56HZV15C0095 under agency 9700, all reported top-agency obligations are concentrated in the DEPT OF THE ARMY. The Army accounts for $5.99 billion across 1,132 awards, indicating complete dependency on a single obligating agency in the provided data. This distribution suggests the award activity is highly concentrated with no diversification across other agencies in the listed rows.

Top Vendors

SELECT
    vendor_name,
    cage_code,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'W56HZV15C0095'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions
OSHKOSH DEFENSE, LLC 75Q65 5,525,762,346.92 5.53 billion 1,101
OSHKOSH DEFENSE, LLC 463,827,240.64 463.83 million 31

Insight

Award obligations for PIID W56HZV15C0095 are highly concentrated in OSHKOSH DEFENSE, LLC, which accounts for 5.53 billion across 1,101 awards. A second OSHKOSH DEFENSE, LLC entry, without a CAGE code, adds 463.83 million across 31 awards, indicating the activity is dominated by the same vendor name even when segmented differently in the data. This distribution suggests a strongly concentrated award history with limited vendor dispersion over the 10-year window.

Top NAICS

SELECT
    content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'W56HZV15C0095'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    naics_code,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
336992 MILITARY ARMORED VEHICLE, TANK, AND TANK COMPONENT MANUFACTURING 5,989,589,587.56 5.99 billion 1,132

Insight

Over the 10-year window, obligations for award W56HZV15C0095 are fully concentrated in NAICS 336992, Military Armored Vehicle, Tank, and Tank Component Manufacturing. This category accounts for $5.99 billion across 1,132 awards, indicating sustained activity in a single manufacturing segment rather than a diversified NAICS mix. The concentration suggests the award’s obligations are narrowly aligned to armored vehicle and tank-related production.

Top PSC Codes

SELECT
    content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'W56HZV15C0095'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
2355 COMBAT, ASSAULT, AND TACTICAL VEHICLES, WHEELED 5,989,589,587.56 5.99 billion 1,132

Insight

Obligations under PIID W56HZV15C0095 are fully concentrated in PSC 2355, Combat, Assault, and Tactical Vehicles, Wheeled, with $5.99 billion obligated across 1,132 awards over the 10-year window. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The award pattern suggests sustained, repeated procurement activity in a single equipment category rather than a broad mix of supplies or services.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'W56HZV15C0095'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2016 463,827,757.94 463.83 million 30
2017 496,819,905.60 496.82 million 43
2018 2,389,273,451.74 2.39 billion 65
2019 1,073,958,239.05 1.07 billion 96
2020 1,589,270,777.22 1.59 billion 169
2021 -4,841,635.35 -4.84 million 166
2022 -11,535,739.69 -11.54 million 211
2023 -2,772,552.23 -2.77 million 195
2024 -1,187,118.25 -1.19 million 84
2025 -3,223,498.47 -3.22 million 73

Insight

Obligations for PIID W56HZV15C0095 were concentrated in 2018-2020, when annual totals ranged from $1.07 billion to $2.39 billion and award counts increased from 65 to 169. After 2020, annual net obligations turned negative and remained near breakeven through 2025, while award volume stayed elevated in 2021-2023 before declining in 2024-2025. This pattern suggests a front-loaded obligation profile followed by later-year deobligations and reduced recent activity.

Use FPDS Query for deeper award and vehicle analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, and annual trends.

Continue from this last 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.