Award Number

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

Procurement analysis for award W58RGZ23C0001 under agency 9700 during the last full year, including obligations and action activity.

Award W58RGZ23C0001 recorded 32 award actions in the last full year. Total obligated value was 1.73 billion, with an average action value of 54,023,535.38.

Generated at 03/20/2026

Analysis period: Last full year

Dollar figures are based on the provided exact total obligated amount of 1,728,753,132 and the stated analysis window.

Agency ID
9700
PIID
W58RGZ23C0001
Type
Award
Total Obligated
1.73 billion
1,728,753,132.00
Actions
32
Average Action Value
54,023,535.38

Overview

This page summarizes award number W58RGZ23C0001 for agency 9700 over the last full year. The award accumulated 1,728,753,132 in obligated value across 32 actions, producing an average action value of 54,023,535.38. These figures describe the observed award activity in the stated period and do not add contract details beyond the inputs provided.

How to use this page

Use this page to review the award’s recent obligation volume and action frequency at a glance. The totals and averages support quick comparison with other awards, agencies, or time windows using the same FPDS query structure.

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 = 'W58RGZ23C0001'
    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 1,728,753,132.00 1.73 billion 32

Insight

Over the past 1 year, obligations for PIID W58RGZ23C0001 are fully concentrated in a single agency, the DEPT OF THE ARMY (agency ID 2100). That agency accounts for 1.73 billion in obligated dollars across 32 awards, indicating a highly concentrated award distribution with no evidence of cross-agency spread in the provided data.

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 = 'W58RGZ23C0001'
        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
BELL TEXTRON INC. 97499 1,728,753,132.00 1.73 billion 32

Insight

All obligations in the 1-year window are concentrated with BELL TEXTRON INC. (CAGE 97499), which accounts for $1.73 billion across 32 awards under PIID W58RGZ23C0001. This indicates a highly concentrated vendor distribution with no other vendors represented in the provided rows. The award pattern suggests sustained obligation activity to a single incumbent supplier during the 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 = 'W58RGZ23C0001'
    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
336411 AIRCRAFT MANUFACTURING 1,728,753,132.00 1.73 billion 32

Insight

Obligations for PIID W58RGZ23C0001 in the 1-year window are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $1.73 billion across 32 awards. This indicates a narrow industry distribution and strong dependence on a single NAICS category for obligated dollars. The award count suggests repeated activity within the same sector rather than diversification across multiple industries.

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 = 'W58RGZ23C0001'
    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
AC33 NATIONAL DEFENSE R&D SERVICES; DEFENSE-RELATED ACTIVITIES; EXPERIMENTAL DEVELOPMENT 1,728,753,132.00 1.73 billion 32

Insight

Obligations on this award are fully concentrated in PSC AC33, NATIONAL DEFENSE R&D SERVICES; DEFENSE-RELATED ACTIVITIES; EXPERIMENTAL DEVELOPMENT, which accounts for the entire reported 1.73 billion in the 1-year window. This concentration across 32 awards indicates the activity is narrowly focused on defense-related experimental development rather than a mixed service profile.

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 = 'W58RGZ23C0001'
    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 1,728,753,132.00 1.73 billion 32

Insight

In the 1-year window, obligations for PIID W58RGZ23C0001 are concentrated in FY 2025, with $1.73 billion obligated across 32 awards. This indicates a highly concentrated annual distribution within the period provided, rather than a multi-year spread. The volume suggests substantial procurement activity in FY 2025, but no year-over-year trend can be assessed from the single-year data point.

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.