This award page summarizes procurement activity tied to award number W56HZV17C0001 within agency ID 9700. Over the last 10 years, the award recorded 242 actions and 2,875,130,483.43 in total obligated dollars.
Award Number
Award Number 9700 / W56HZV17C0001 Federal Contract Action Summary (Last 10 Years)
Award number W56HZV17C0001 for agency 9700 shows 242 actions over the last 10 years and 2.88 billion obligated.
Dollar values are reported from the provided analysis window and may reflect rounded or exact totals as noted.
Overview
The award record for W56HZV17C0001 within agency ID 9700 shows sustained obligation activity across the last 10 years. Total obligated value is 2,875,130,483.43 across 242 award actions, for an average action value of 11,880,704.48.
How to use this page
Use this page to review the award-level summary for W56HZV17C0001 and assess how obligation volume is distributed across actions. The figures support quick comparison of total value, action count, and average action size for the selected period.
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 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,875,130,483.43 | 2.88 billion | 226 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 16 |
Insight
Obligations are highly concentrated under DEPT OF THE ARMY, which accounts for $2.88 billion across 226 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears in 16 awards but with no obligated dollars, indicating administrative or oversight activity rather than funding allocation. Overall, the award record is dominated by Army obligation activity within the 10-year window.
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 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 |
|---|---|---|---|---|
| BAE SYSTEMS LAND & ARMAMENTS L.P. | 06085 | 2,875,130,483.43 | 2.88 billion | 242 |
Insight
Obligations for PIID W56HZV17C0001 are fully concentrated with a single vendor, BAE SYSTEMS LAND & ARMAMENTS L.P. (CAGE 06085), which received $2.88 billion across 242 awards over the 10-year window. This indicates a highly concentrated vendor profile for this award, with no evidence in the provided rows of broader vendor distribution. The volume of awards suggests sustained reliance on the same contractor rather than sporadic or diversified procurement activity.
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 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 |
|---|---|---|---|---|
| 336211 | MOTOR VEHICLE BODY MANUFACTURING | 2,875,130,483.43 | 2.88 billion | 242 |
Insight
Within the 10-year window, obligations for PIID W56HZV17C0001 are fully concentrated in NAICS 336211, Motor Vehicle Body Manufacturing. This category accounts for $2.88 billion across 242 awards, indicating a highly concentrated award profile with no other NAICS codes reflected in the provided data. The volume of awards suggests repeated procurement activity within the same industrial classification over the period.
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 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 |
|---|---|---|---|---|
| 2350 | COMBAT, ASSAULT, AND TACTICAL VEHICLES, TRACKED | 2,875,130,483.43 | 2.88 billion | 242 |
Insight
Obligations under PIID W56HZV17C0001 are highly concentrated in PSC 2350, Combat, Assault, and Tactical Vehicles, Tracked, which accounts for $2.88 billion across 242 awards over the 10-year window. This indicates sustained procurement activity centered on a single vehicle category rather than a broadly distributed PSC mix. The award count suggests repeated buying actions within the same PSC, reinforcing the concentration of spending in tracked tactical vehicles.
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 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2017 | 413,688,530.00 | 413.69 million | 4 |
| 2018 | 365,702,646.73 | 365.70 million | 8 |
| 2019 | 379,958,519.34 | 379.96 million | 30 |
| 2020 | 354,109,099.30 | 354.11 million | 28 |
| 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 under agency 9700 are concentrated in a relatively narrow band for most years, generally ranging from about $330 million to $555 million annually, with a notable peak in 2023 at $555.13 million. Award counts increased over time from 4 in 2017 to 43 in 2024, indicating broader annual distribution of awards even as obligated amounts did not rise proportionally. The series is not linear: 2021 dropped sharply to $87.60 million despite 33 awards, followed by a rebound in 2022-2024 and a much lower 2025 total of $9.00 million to date.
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.