Award Number

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

Procurement profile for award number W58RGZ21C0015 under Agency ID 9700, summarizing obligations and action history over the last 5 years.

This page presents the federal award record for PIID W58RGZ21C0015 with totals measured across the last 5 years. The award shows 73 actions and 3.47 billion in total obligated value.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the analysis window provided and use the exact obligated amount of 3471475095.5.

Agency ID
9700
PIID
W58RGZ21C0015
Type
Award
Total Obligated
3.47 billion
3,471,475,095.50
Actions
73
Average Action Value
47,554,453.36

Overview

The award record for W58RGZ21C0015 under Agency ID 9700 shows $3,471,475,095.5 in total obligated value across 73 actions. The average action value is $47,554,453.36, based on the provided analysis window. This page is intended to support review of award activity and obligation magnitude, not to infer contract purpose or performance details.

How to use this page

Use this page to review the award number, obligation totals, and action frequency for W58RGZ21C0015. It is useful for identifying the scale of activity in the selected five-year period and for linking the award to other procurement records when more detail is needed.

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 5 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 3,471,475,095.50 3.47 billion 44
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 29

Insight

Obligations under PIID W58RGZ21C0015 are highly concentrated in the Department of the Army, which accounts for $3.47 billion across 44 awards over the 5-year window. By contrast, DCMA appears with 29 awards but no obligated dollars, indicating administrative or oversight activity rather than funded obligation within this record set. The distribution suggests the contract value is driven almost entirely by Army obligations, with limited financial participation from other listed agencies.

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 5 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 1,984,035,664.36 1.98 billion 29
THE BOEING COMPANY 8V613 1,487,439,431.14 1.49 billion 44

Insight

Vendor obligations for PIID W58RGZ21C0015 are highly concentrated in Boeing, with two name variants for the same CAGE code 8V613 accounting for the full set of top vendor entries. BOEING COMPANY, THE received $1.98 billion across 29 awards, while THE BOEING COMPANY received $1.49 billion across 44 awards, indicating a substantial share of obligated dollars and actions are concentrated with a single contractor identity. The split across two vendor name variants suggests the apparent distribution is affected by naming conventions rather than multiple distinct vendors.

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 5 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 3,471,475,095.50 3.47 billion 73

Insight

Obligations for PIID W58RGZ21C0015 over the 5-year window are fully concentrated in NAICS 336411, Aircraft Manufacturing. This single NAICS accounts for $3.47 billion across 73 awards, indicating a highly focused procurement pattern with no diversification across other industries 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 5 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 3,471,475,095.50 3.47 billion 73

Insight

Obligations on this award are highly concentrated in PSC 5342, Hardware, Weapon System, totaling $3.47 billion across 73 awards in the 5-year window. This indicates the award activity is dominated by hardware procurement rather than a broad mix of product categories. The repeated award count suggests sustained purchasing activity within the same PSC rather than a one-time obligation spike.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2021 169,460,000.00 169.46 million 2
2022 -5,000,000.00 -5.00 million 1
2023 2,374,807,068.29 2.37 billion 12
2024 552,640,735.73 552.64 million 25
2025 379,567,291.48 379.57 million 33

Insight

Obligations for PIID W58RGZ21C0015 were highly concentrated in 2023, which accounted for 2.37 billion across 12 awards and far exceeded every other year in the 5-year window. Activity then declined sharply to 552.64 million in 2024 and 379.57 million in 2025, while award counts increased from 12 to 25 and 33, indicating a shift toward smaller, more numerous actions. 2021 was comparatively modest at 169.46 million across 2 awards, and 2022 recorded a net negative obligation of 5.00 million.

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