Award Number

Award Number 9700 / W56HZV15CA001 Federal Contract Action Summary (Last 5 Years)

FPDS award page for award number W56HZV15CA001 under agency ID 9700, showing activity in the last 5 years.

This page summarizes federal procurement activity for award number W56HZV15CA001 over the last 5 years. The award shows 91 actions with total obligations of $94.25 million and an average action value of $1,035,698.34.

Generated at 03/20/2026

Analysis period: Last 5 years

Obligation totals are based on the provided exact amount of 94,248,548.65 and a readable total of $94.25 million.

Agency ID
9700
PIID
W56HZV15CA001
Type
Award
Total Obligated
94.25 million
94,248,548.65
Actions
91
Average Action Value
1,035,698.34

Overview

The award record for W56HZV15CA001 reflects 91 recorded actions in the last 5 years. Total obligated amount is $94,248,548.65, with an average action value of $1,035,698.34. The page is scoped to agency ID 9700 and is intended for award-level procurement review.

How to use this page

Use this page to review the award’s obligation history, action frequency, and average action value over the selected window. It is most useful for quick award-level analysis, follow-up on procurement activity, and comparison against related federal spending records.

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 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 94,248,548.65 94.25 million 91

Insight

Over the past 5 years, obligations for PIID W56HZV15CA001 are entirely concentrated in a single agency: the Department of the Army. The Army accounts for $94.25 million across 91 awards, indicating that this award activity is fully centered within one agency rather than distributed across multiple agencies.

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 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. 7B726 94,248,548.65 94.25 million 91

Insight

Over the 5-year window, obligations under PIID W56HZV15CA001 are concentrated entirely with BAE SYSTEMS LAND & ARMAMENTS L.P. (CAGE 7B726). This vendor accounts for $94.25 million across 91 awards, indicating repeated obligation activity to a single supplier rather than a distributed vendor base. Such concentration suggests the award has been managed primarily through sustained engagements with one contractor.

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 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 94,248,548.65 94.25 million 91

Insight

Over the 5-year window, obligations for award W56HZV15CA001 are fully concentrated in NAICS 336992, Military Armored Vehicle, Tank, and Tank Component Manufacturing. This NAICS accounts for $94.25 million across 91 awards, indicating sustained procurement activity within a single industrial category. The absence of other NAICS codes in the provided rows suggests no observable diversification in obligations for this award within the period reviewed.

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 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 94,248,548.65 94.25 million 91

Insight

Obligations for PIID W56HZV15CA001 over the 5-year window are fully concentrated in PSC 2350, Combat, Assault, and Tactical Vehicles, Tracked, totaling $94.25 million across 91 awards. This indicates a highly focused procurement pattern with no evidence of material spread across other product or service categories in the provided data. The award count suggests repeated contracting activity within the same PSC rather than diversification of 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 = 'W56HZV15CA001'
    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 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 under PIID W56HZV15CA001 declined sharply after 2021, falling from $62.21 million in 2021 to $14.88 million in 2022, $4.56 million in 2023, and $1.10 million in 2024. Award volume also decreased over the period, from 25 awards in 2021 to 15 in 2024, indicating a contraction in both funding and activity. In 2025, obligations increased to $11.50 million across 5 awards, suggesting a partial rebound but still well below the 2021 level.

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.