This award page presents the procurement record for PIID W56HZV15CA001 associated with agency ID 9700. Over the last 10 years, the award shows 184 actions and $1,894,501,974.19 in total obligated amount.
Award Number
Award Number 9700 / W56HZV15CA001 Federal Contract Action Summary (Last 10 Years)
Federal procurement summary for award number W56HZV15CA001 under agency ID 9700, showing obligations and action history over the last 10 years.
Amounts are reported as obligational totals for the selected 10-year window and may reflect multiple award actions.
Overview
The award record for PIID W56HZV15CA001 covers 184 reported actions in the last 10 years, with total obligated funding of $1,894,501,974.19. The average action value across the record is $10,296,206.38. This page is organized to support review of award activity, obligation levels, and action frequency for the selected period.
How to use this page
Use this page to review the award-level procurement trail for W56HZV15CA001 and to compare total obligations with the number of recorded actions. The figures are useful for assessing how procurement activity is distributed across the 10-year analysis window and for identifying the scale of award execution.
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 = 'W56HZV15CA001'
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 | 1,894,501,974.19 | 1.89 billion | 183 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 1 |
Insight
Obligations are heavily concentrated with the Department of the Army, which accounts for $1.89 billion across 183 awards under PIID W56HZV15CA001. Defense Contract Management Agency (DCMA) appears only once and shows no obligated value, indicating a negligible distribution outside the Army. Overall, the award activity in the 10-year window is almost entirely driven by the Department of the Army.
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 = 'W56HZV15CA001'
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. | 7B726 | 1,697,683,274.30 | 1.70 billion | 171 |
| BAE SYSTEMS LAND & ARMAMENTS L.P. | 196,818,699.89 | 196.82 million | 13 |
Insight
Obligations under PIID W56HZV15CA001 are highly concentrated in BAE SYSTEMS LAND & ARMAMENTS L.P., which accounts for the vast majority of identified obligated dollars across the 10-year window. The vendor appears in two rows, with one CAGE code (7B726) associated with $1.70 billion across 171 awards and a separate uncoded entry associated with $196.82 million across 13 awards. Combined, these entries indicate repeated and sustained obligation flow to the same vendor, with the CAGE-coded record representing the dominant share.
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 = 'W56HZV15CA001'
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 | 1,894,501,974.19 | 1.89 billion | 184 |
Insight
For award W56HZV15CA001 over the 10-year window, obligations are fully concentrated in NAICS 336992, Military Armored Vehicle, Tank, and Tank Component Manufacturing. This category accounts for $1.89 billion across 184 awards, indicating a sustained and highly focused procurement pattern within a single industrial base segment. No other NAICS codes are reflected in the provided data, so the observed distribution is entirely concentrated rather than diversified.
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 = 'W56HZV15CA001'
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 | 1,894,501,974.19 | 1.89 billion | 184 |
Insight
PSC 2350, Combat, Assault, and Tactical Vehicles, Tracked, accounts for all reported obligations in this 10-year window for award PIID W56HZV15CA001, totaling $1.89 billion across 184 awards. This indicates complete concentration of obligated funding in a single product service code, with no evidence of diversification across other PSCs in the provided data. The award pattern suggests sustained procurement activity focused exclusively on tracked tactical vehicle requirements over the period.
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 = 'W56HZV15CA001'
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 | 137,973,699.89 | 137.97 million | 12 |
| 2017 | 152,569,748.02 | 152.57 million | 19 |
| 2018 | 377,500,506.63 | 377.50 million | 18 |
| 2019 | 644,768,836.89 | 644.77 million | 17 |
| 2020 | 487,440,634.11 | 487.44 million | 27 |
| 2021 | 62,207,790.36 | 62.21 million | 25 |
| 2022 | 14,881,596.56 | 14.88 million | 27 |
| 2023 | 4,560,767.90 | 4.56 million | 19 |
| 2024 | 1,098,393.83 | 1.10 million | 15 |
| 2025 | 11,500,000.00 | 11.50 million | 5 |
Insight
Obligations for PIID W56HZV15CA001 were highly concentrated in 2018–2020, peaking at 644.77 million in 2019 after 377.50 million in 2018 and 487.44 million in 2020. Award counts were highest in 2020–2024, but obligated dollars fell sharply after 2020, dropping from 62.21 million in 2021 to 1.10 million in 2024, indicating a shift to lower-dollar activity. In 2025, obligations increased to 11.50 million, but remain well below the 2018–2020 levels.
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.