Award Number

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

Federal procurement award page for award number W56HZV15CA001 under agency ID 9700, showing last full year obligation and action activity.

This award record covers PIID W56HZV15CA001 for agency ID 9700 during the last full year. The award shows total obligations of 11.50 million across 5 actions, with an average action value of 2.30 million.

Generated at 03/20/2026

Analysis period: Last full year

Totals are based on the analysis window of the last full year, with exact obligated value of 11,500,000 and 5 award actions.

Agency ID
9700
PIID
W56HZV15CA001
Type
Award
Total Obligated
11.50 million
11,500,000.00
Actions
5
Average Action Value
2,300,000.00

Overview

The award number W56HZV15CA001 is associated with agency ID 9700 and is summarized for the last full year analysis window. During that period, the award recorded 5 actions and 11,500,000 in total obligations. The average action value was 2,300,000.

How to use this page

Use this page to review obligation totals and action volume for award W56HZV15CA001. The figures support basic procurement analysis for the selected period without adding details beyond the provided award data.

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 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 11,500,000.00 11.50 million 5

Insight

Over the past 1 year, obligations under PIID W56HZV15CA001 are concentrated entirely within the Department of the Army (agency ID 2100). The reported activity totals $11.50 million across 5 awards, indicating a fully single-agency distribution for this award record in the selected 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 = '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 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. 7B726 11,500,000.00 11.50 million 5

Insight

Within the 1-year window for award W56HZV15CA001, obligations are fully concentrated with a single vendor, BAE SYSTEMS LAND & ARMAMENTS L.P. (CAGE 7B726). This vendor accounts for $11.50 million across 5 awards, indicating repeated funding to the same contractor rather than a broadly distributed vendor base. The pattern suggests a high degree of vendor concentration for this award.

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 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 11,500,000.00 11.50 million 5

Insight

Obligations for PIID W56HZV15CA001 in the last year were fully concentrated in NAICS 336992, Military Armored Vehicle, Tank, and Tank Component Manufacturing. This category accounted for $11.50 million across 5 awards, indicating a narrow industrial distribution within the observed window. The award pattern suggests all recorded obligated activity under this contract was directed to a single manufacturing segment.

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 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 11,500,000.00 11.50 million 5

Insight

Obligations under PIID W56HZV15CA001 in the last year are fully concentrated in PSC 2350, Combat, Assault, and Tactical Vehicles, Tracked. The award reflects 5 actions totaling $11.50 million, indicating a narrow PSC distribution with no diversification across other product or service codes in the provided data. This concentration suggests the award activity is wholly focused on tracked tactical vehicle requirements.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 11,500,000.00 11.50 million 5

Insight

For PIID W56HZV15CA001 in agency 9700, FY 2025 obligations total $11.50 million across 5 awards, indicating a moderate level of award activity within the 1-year window. Obligations are concentrated in a single year, so there is no year-to-year trend available from the provided data. The limited distribution suggests the award’s recent activity is clustered rather than spread across multiple fiscal 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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.