Award Number

Award Number 9700 / W56HZV23C0024 Federal Contract Action Summary (Last Year)

Award number W56HZV23C0024 under agency 9700 shows 23 actions in the last full year with $713.49 million obligated.

This page summarizes award number W56HZV23C0024 for agency 9700 over the last full year. The award recorded 23 actions and $713.49 million in total obligated value.

Generated at 03/20/2026

Analysis period: Last full year

Obligated amounts are shown as reported for the analysis window and may differ from rounded display values.

Agency ID
9700
PIID
W56HZV23C0024
Type
Award
Total Obligated
713.49 million
713,490,545.00
Actions
23
Average Action Value
31,021,328.04

Overview

In the last full year, award W56HZV23C0024 recorded 23 award actions and $713,490,545 in total obligated value. That equals an average action value of $31,021,328.04, indicating a high-dollar award with multiple recorded actions in the period.

How to use this page

Use this page to review the award number, total obligated value, action count, and average action value for agency 9700. The figures provide a compact view of award activity over the last full year without adding assumptions about scope or purpose.

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 = 'W56HZV23C0024'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 713,490,545.00 713.49 million 23

Insight

All obligations in the 1-year window are concentrated in a single agency: DEPT OF THE ARMY, which accounts for $713.49 million across 23 awards. This indicates a highly concentrated obligation profile for PIID W56HZV23C0024, with no other agencies appearing in the provided rows. The distribution suggests the award activity is entirely Army-centric over the period reviewed.

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 = 'W56HZV23C0024'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 713,490,545.00 713.49 million 23

Insight

Within the 1-year window for award W56HZV23C0024, obligations are fully concentrated with a single vendor, BAE SYSTEMS LAND & ARMAMENTS L.P. (CAGE 06085). This vendor received $713.49 million across 23 awards, indicating a high degree of spend concentration and repeated award activity under the PIID. No other vendors are present in the provided data, so there is no visible distribution across suppliers in this 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 = 'W56HZV23C0024'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 713,490,545.00 713.49 million 23

Insight

Over the past 1 year, obligations under award PIID W56HZV23C0024 are fully concentrated in NAICS 336992, Military Armored Vehicle, Tank, and Tank Component Manufacturing. This NAICS accounts for the entire reported obligation total of 713.49 million across 23 awards, indicating a highly concentrated spending profile with no diversification in the provided data.

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 = 'W56HZV23C0024'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 713,490,545.00 713.49 million 23

Insight

Obligations for this award are fully concentrated in PSC 2350, Combat, Assault, and Tactical Vehicles, Tracked. Over the 1-year window, this PSC accounts for $713.49 million across 23 awards, indicating a narrow product mix centered on tracked combat vehicle procurement. The repeated award activity suggests sustained funding in this category rather than diversification across multiple PSCs.

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 = 'W56HZV23C0024'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 713,490,545.00 713.49 million 23

Insight

Over the 1-year window, obligations for award W56HZV23C0024 are concentrated in FY 2025, with $713.49 million obligated across 23 awards/actions. This indicates a high level of spend activity in a single fiscal year rather than a distributed multi-year pattern. The average obligation volume per award/action is substantial, suggesting a concentrated funding profile within the period observed.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.