This award record shows 511 actions and $1.94 billion in total obligated value across the last 5 years. The average action value is $3,787,289.14, indicating a high-volume award with significant obligated activity.
Award Number
Award Number 9700 / W56HZV20C0050 Federal Contract Action Summary (Last 5 Years)
Federal procurement summary for award W56HZV20C0050 under Agency ID 9700, covering obligations and action activity over the last 5 years.
Figures reflect the provided analysis window and use the exact total obligated amount of $1,935,304,748.27.
Overview
The award record for W56HZV20C0050 shows sustained procurement activity within Agency ID 9700 during the last 5 years. Total obligated value is $1,935,304,748.27 across 511 actions, with an average action value of $3,787,289.14. This combination of action count and obligated value suggests repeated modification or funding activity on a large award.
How to use this page
Use this page to review award-level obligation patterns, compare action volume, and assess average action size for W56HZV20C0050. The data is useful for procurement analysis, obligation tracking, and identifying awards with concentrated funding activity over time.
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 5 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 | 1,935,304,748.27 | 1.94 billion | 511 |
Insight
Within the 5-year window for PIID W56HZV20C0050, all reported obligations in the top-agencies view are concentrated in a single agency: the Department of the Army. The Army accounts for $1.94 billion across 511 awards, indicating a highly concentrated obligation profile with no other agencies appearing in this section.
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 5 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 | 1,935,304,748.27 | 1.94 billion | 511 |
Insight
Obligations for PIID W56HZV20C0050 are entirely concentrated with a single vendor, OSHKOSH DEFENSE, LLC (CAGE 75Q65). Over the 5-year window, this vendor received 511 awards totaling $1.94 billion, indicating a highly concentrated award pattern with no visible vendor diversification in the provided data. This level of concentration suggests sustained reliance on the same contractor for this instrument.
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 5 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 | 1,935,304,748.27 | 1.94 billion | 511 |
Insight
Over the 5-year window, this award is fully concentrated in NAICS 336992, Military Armored Vehicle, Tank, and Tank Component Manufacturing, with no other NAICS codes represented in the provided data. The award accounts for $1.94 billion across 511 obligations, indicating a sustained and highly focused procurement profile within this manufacturing category. This concentration suggests the requirement is tied to a narrow industrial base rather than a diversified set of NAICS activities.
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 5 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 | 1,935,304,748.27 | 1.94 billion | 511 |
Insight
Obligations for this award are fully concentrated in PSC 2355, Combat, Assault, and Tactical Vehicles, Wheeled, which accounts for $1.94 billion across 511 awards over the 5-year window. This indicates a highly focused procurement profile with no visible diversification into other product or service categories in the provided data. The award activity is therefore dominated by wheeled tactical vehicle-related obligations.
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 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 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, with annual funding of $886.86 million and $970.10 million across 118 and 176 awards, respectively. Obligations then declined sharply in 2023 to $106.14 million across 145 awards, followed by net negative obligations in 2024 (-$20.32 million) and 2025 (-$7.47 million). Award counts also fell materially after 2022, dropping to 51 in 2024 and 21 in 2025, indicating reduced activity and possible deobligation adjustments in the later years.
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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.