Award Number

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

Federal procurement award page for award number W58RGZ21C0015 under agency ID 9700, covering last full year activity.

This page summarizes award number W58RGZ21C0015 for agency ID 9700 during the last full year. The award shows 33 actions and total obligated funds of 379.57 million.

Generated at 03/20/2026

Analysis period: Last full year

Total obligated exact value is 379567291.48, with an average action value of 11502039.14 across 33 award actions.

Agency ID
9700
PIID
W58RGZ21C0015
Type
Award
Total Obligated
379.57 million
379,567,291.48
Actions
33
Average Action Value
11,502,039.14

Overview

Award number W58RGZ21C0015 under agency ID 9700 recorded 33 actions in the last full year. Total obligated funding was 379,567,291.48, which is about 379.57 million when rounded for display. The average action value was 11,502,039.14.

How to use this page

Use this page to review the award's recent obligation level and action count in one place. The figures support basic procurement analysis, including scale and average activity per action, for the selected analysis 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 = 'W58RGZ21C0015'
    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 379,567,291.48 379.57 million 19
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 14

Insight

Obligations are highly concentrated in the DEPT OF THE ARMY, which accounts for $379.57 million across 19 awards in the 1-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears on 14 awards but with no obligated dollars, indicating administrative or oversight involvement rather than funding execution. Overall, the award activity is distributed across two agencies, but nearly all obligated value is associated with the Army.

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 = 'W58RGZ21C0015'
        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
BOEING COMPANY, THE 8V613 338,545,255.50 338.55 million 13
THE BOEING COMPANY 8V613 41,022,035.98 41.02 million 20

Insight

Obligations for PIID W58RGZ21C0015 are highly concentrated with Boeing-related vendor records accounting for all reported top-vendor activity in the 1-year window. BOEING COMPANY, THE (CAGE 8V613) received $338.55 million across 13 awards, while THE BOEING COMPANY (CAGE 8V613) received an additional $41.02 million across 20 awards. The shared CAGE code indicates the obligated amounts are concentrated within a single vendor identity, with the distribution split across two recorded vendor name variants.

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 = 'W58RGZ21C0015'
    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 379,567,291.48 379.57 million 33

Insight

Obligations for PIID W58RGZ21C0015 are fully concentrated in NAICS 336411, Aircraft Manufacturing, over the 1-year window. This category accounts for $379.57 million across 33 awards, indicating a highly focused procurement profile with no other NAICS codes represented 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 = 'W58RGZ21C0015'
    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
5342 HARDWARE, WEAPON SYSTEM 379,567,291.48 379.57 million 33

Insight

Obligations under PIID W58RGZ21C0015 in the 1-year window are entirely concentrated in PSC 5342, Hardware, Weapon System. This PSC accounts for $379.57 million across 33 awards, indicating a highly focused procurement profile rather than a broad distribution across multiple product service codes. The concentration in a single PSC suggests the award activity is dominated by weapon system hardware 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 = 'W58RGZ21C0015'
    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 379,567,291.48 379.57 million 33

Insight

For the 1-year window, obligations for award W58RGZ21C0015 are concentrated in FY2025, totaling $379.57 million across 33 awards. This indicates a high level of obligated activity within a single fiscal year, with an average of roughly $11.5 million per award. No other years are present in the provided data, so the observed trend is entirely concentrated in FY2025.

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.