Award Number

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

Procurement summary for award number W56HZV17C0001 under agency ID 9700, covering obligations and action activity in the last full year.

This page summarizes award W56HZV17C0001 for agency ID 9700 over the last full year. The award shows 28 actions and total obligated amount of 8,998,221.86, or about 9.00 million.

Generated at 03/20/2026

Analysis period: Last full year

Totals reflect the provided analysis window and may differ from rounded display values because exact obligations are used in calculations.

Agency ID
9700
PIID
W56HZV17C0001
Type
Award
Total Obligated
9.00 million
8,998,221.86
Actions
28
Average Action Value
321,365.07

Overview

For the last full year, award W56HZV17C0001 recorded 28 actions and total obligated dollars of 8,998,221.86. The average action value was 321,365.07, indicating the size of individual actions within the award history. Rounded display totals show about 9.00 million obligated.

How to use this page

Use this page to review award-level obligation activity for W56HZV17C0001 under agency ID 9700. It is suited to quick checks of total obligations, action count, and average action value within the selected time window.

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 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 8,998,221.86 9.00 million 26
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 2

Insight

Over the past 1 year, obligations on PIID W56HZV17C0001 are concentrated in DEPT OF THE ARMY, which accounts for $9.00 million across 26 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) has 2 awards recorded but no obligated dollars, indicating minimal funding activity relative to the Army. Overall, the award activity is heavily concentrated with one agency carrying essentially all of the obligation value.

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 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 8,998,221.86 9.00 million 28

Insight

BAE SYSTEMS LAND & ARMAMENTS L.P. is the sole top vendor listed for this award over the 1-year window, indicating complete obligation concentration in the provided top-vendor view. The vendor received 28 awards totaling $8.998 million, or about $9.00 million, suggesting repeated obligation activity rather than a one-time action.

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 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
336211 MOTOR VEHICLE BODY MANUFACTURING 8,998,221.86 9.00 million 28

Insight

Award obligations for PIID W56HZV17C0001 in the 1-year window are fully concentrated in NAICS 336211, Motor Vehicle Body Manufacturing. This NAICS accounts for $8.998 million across 28 awards, indicating a focused obligation pattern within a single industry segment. No other NAICS codes are present in the provided data, so no distributional diversification is observable in this section.

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 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 8,998,221.86 9.00 million 28

Insight

Obligations for this award are fully concentrated in PSC 2350, Combat, Assault, and Tactical Vehicles, Tracked, with $9.00 million obligated across 28 actions in the 1-year window. This indicates a highly focused procurement profile centered on tracked tactical vehicle requirements, with no other PSCs represented in the provided data. The relatively high action count against a single PSC suggests repeated activity within a narrow product category rather than diversified procurement.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 8,998,221.86 9.00 million 28

Insight

For PIID W56HZV17C0001 within the 1-year window, FY 2025 obligated amounts total $8.998 million across 28 awards. This indicates a relatively concentrated award pattern in the current year, with obligations aggregated into a limited number of actions rather than spread across many awards. No multi-year trend can be assessed from the provided data because only one year is present.

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.