This award record covers the last 10 years of activity for PIID W56HZV20C0050. It shows total obligated amounts of 2.07 billion across 574 actions, with an average action value of 3,600,060.57.
Award Number
Award Number 9700 / W56HZV20C0050 Federal Contract Action Summary (Last 10 Years)
Federal procurement profile for award number W56HZV20C0050 under agency ID 9700, summarizing obligations and action history over the last 10 years.
Amounts and counts reflect the provided analysis window and may change if the record is updated or reclassified.
Overview
The award number W56HZV20C0050 is associated with agency ID 9700 and shows a total obligated amount of 2,066,434,769.8 over the last 10 years. The record includes 574 award actions, with an average action value of 3,600,060.57. This page presents the award as a single federal procurement record rather than a broader agency summary.
How to use this page
Use this page to review the scale and activity pattern of the award, including total obligations, action count, and average action value. It is useful for identifying how much was obligated over time and how frequently the award was modified or acted on within the analysis 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 = 'W56HZV20C0050'
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 | 2,066,434,769.80 | 2.07 billion | 574 |
Insight
For this award over the 10-year window, obligations are fully concentrated in a single top agency: the Department of the Army, with $2.07 billion across 574 awards. This indicates that the award’s funding and execution are heavily centered within one agency rather than distributed across multiple agencies. The volume of awards alongside the obligation total suggests sustained transactional activity under Army oversight.
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 = 'W56HZV20C0050'
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 | 2,066,434,769.80 | 2.07 billion | 574 |
Insight
OSHKOSH DEFENSE, LLC accounts for the full vendor concentration in this award context, with $2.07 billion in total obligated value across 574 awards over the 10-year window. This indicates a highly concentrated obligation pattern tied to a single vendor rather than a broadly distributed vendor base. The volume of awards alongside the obligation total suggests sustained recurring procurement activity with this supplier.
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 = 'W56HZV20C0050'
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 | 2,066,434,769.80 | 2.07 billion | 574 |
Insight
For PIID W56HZV20C0050 over the 10-year window, obligations are fully concentrated in NAICS 336992, Military Armored Vehicle, Tank, and Tank Component Manufacturing. This category accounts for $2.07 billion across 574 awards, indicating a sustained and highly concentrated procurement profile rather than a diversified mix of NAICS activity.
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 = 'W56HZV20C0050'
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 | 2,066,434,769.80 | 2.07 billion | 574 |
Insight
Award activity under PIID W56HZV20C0050 is fully concentrated in PSC 2355, Combat, Assault, and Tactical Vehicles, Wheeled. Over the 10-year window, this PSC accounts for $2.07 billion across 574 awards, indicating a highly focused procurement profile with no diversification across other PSCs in the provided data. The volume of awards suggests repeated obligations within the same product category rather than broad contracting across multiple supply or service lines.
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 = 'W56HZV20C0050'
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 |
|---|---|---|---|
| 2020 | 131,130,021.53 | 131.13 million | 63 |
| 2021 | 886,862,832.01 | 886.86 million | 118 |
| 2022 | 970,102,216.88 | 970.10 million | 176 |
| 2023 | 106,137,514.48 | 106.14 million | 145 |
| 2024 | -20,324,752.90 | -20.32 million | 51 |
| 2025 | -7,473,062.20 | -7.47 million | 21 |
Insight
Obligations for PIID W56HZV20C0050 were heavily concentrated in 2021 and 2022, which together accounted for the vast majority of recorded annual funding at 886.86 million and 970.10 million, respectively. Activity then dropped sharply in 2023 to 106.14 million, followed by net deobligations in 2024 and 2025 of 20.32 million and 7.47 million. Award counts were highest in 2022 at 176, then declined to 145 in 2023 and 51 and 21 in 2024 and 2025, indicating reduced award activity alongside lower net obligations.
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.