This award page presents a 5-year view of award number W56HZV17C0001 for Agency ID 9700. It shows total obligations of 1.36 billion across 172 recorded actions, with an average action value of 7.92 million.
Award Number
Award Number 9700 / W56HZV17C0001 Federal Contract Action Summary (Last 5 Years)
Federal procurement summary for award W56HZV17C0001 under Agency ID 9700, covering obligations and actions over the last 5 years.
Amounts are based on the provided analysis window and use the exact total obligated value of 1361671688.06.
Overview
Award W56HZV17C0001 is associated with Agency ID 9700 and shows 1,361,671,688.06 in total obligated value over the last 5 years. The award includes 172 actions, producing an average action value of 7,916,695.86. This page is limited to the provided award-level inputs and analysis window.
How to use this page
Use this page to review the award's obligation volume and action frequency within the last 5 years. The totals can support procurement review, contract tracking, and comparison against other award records in FPDS.
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 = 'W56HZV17C0001'
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,361,671,688.06 | 1.36 billion | 157 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 15 |
Insight
Award activity for PIID W56HZV17C0001 over the 5-year window is concentrated in the DEPT OF THE ARMY, which accounts for $1.36 billion across 157 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears with 15 awards but no obligated dollars, indicating administrative activity without recorded obligation value in this extract. Overall, obligations are heavily concentrated with the Army, while the remaining agency activity is non-obligating.
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 = 'W56HZV17C0001'
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 |
|---|---|---|---|---|
| BAE SYSTEMS LAND & ARMAMENTS L.P. | 06085 | 1,361,671,688.06 | 1.36 billion | 172 |
Insight
Obligations for PIID W56HZV17C0001 are fully concentrated with a single vendor, BAE SYSTEMS LAND & ARMAMENTS L.P. (CAGE 06085), which accounts for $1.36 billion across 172 awards in the 5-year window. This indicates a highly concentrated award distribution with no diversification across other vendors in the provided data. The award profile suggests sustained reliance on the same contractor over the period.
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 = 'W56HZV17C0001'
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 |
|---|---|---|---|---|
| 336211 | MOTOR VEHICLE BODY MANUFACTURING | 1,361,671,688.06 | 1.36 billion | 172 |
Insight
Obligations for PIID W56HZV17C0001 over the 5-year window are fully concentrated in NAICS 336211, Motor Vehicle Body Manufacturing. This NAICS accounts for $1.36 billion across 172 awards, indicating a highly focused award profile with no visible diversification across other NAICS codes in the provided data. The volume of awards suggests repeated activity within the same industrial category rather than broad procurement spread.
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 = 'W56HZV17C0001'
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 |
|---|---|---|---|---|
| 2350 | COMBAT, ASSAULT, AND TACTICAL VEHICLES, TRACKED | 1,361,671,688.06 | 1.36 billion | 172 |
Insight
Obligations under PIID W56HZV17C0001 are fully concentrated in PSC 2350, Combat, Assault, and Tactical Vehicles, Tracked, over the 5-year window. This PSC accounts for $1.36 billion across 172 awards, indicating a narrowly focused procurement profile rather than a diversified mix of product categories.
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 = 'W56HZV17C0001'
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 | 87,601,824.94 | 87.60 million | 33 |
| 2022 | 379,638,353.74 | 379.64 million | 31 |
| 2023 | 555,125,046.26 | 555.13 million | 37 |
| 2024 | 330,308,241.26 | 330.31 million | 43 |
| 2025 | 8,998,221.86 | 9.00 million | 28 |
Insight
Obligations for PIID W56HZV17C0001 are concentrated in 2022–2024, when annual obligations rose from $379.64 million in 2022 to a peak of $555.13 million in 2023, then declined to $330.31 million in 2024. Award volume was relatively stable across 2021–2025, ranging from 28 to 43 awards per year, indicating that changes in obligated dollars were driven more by award value than by count. FY2025 shows a sharp drop to $9.00 million across 28 awards, suggesting the current year is likely incomplete or reflects a reduced obligation profile relative to prior 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.