Award Number

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

FPDS query page for award number W58RGZ17C0009 under agency ID 9700, showing obligation and action activity over the last 5 years.

This award record covers 98 actions in the last 5 years, with total obligated dollars of 457.17 million. The average action value is 4,665,023.73, based on an exact total obligation of 457,172,325.78.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals and averages reflect the specified analysis window and may vary by reporting updates or corrections.

Agency ID
9700
PIID
W58RGZ17C0009
Type
Award
Total Obligated
457.17 million
457,172,325.78
Actions
98
Average Action Value
4,665,023.73

Overview

This page summarizes award number W58RGZ17C0009 for agency ID 9700 over the last 5 years. It shows a total obligated amount of 457,172,325.78 across 98 award actions, with an average action value of 4,665,023.73. The readable total is 457.17 million.

How to use this page

Use this page to review obligation volume and action count for the award in the selected period. It is useful for comparing this award's activity against other FPDS award records or for tracking changes across time within the last 5 years.

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 = 'W58RGZ17C0009'
    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 457,172,325.78 457.17 million 98

Insight

Obligations for PIID W58RGZ17C0009 are fully concentrated in a single top agency, the Department of the Army, which accounts for the entire reported $457.17 million over 98 awards in the 5-year window. This indicates no observable distribution across other agencies in the provided rows, suggesting the award activity is entirely associated with one agency relationship.

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 = 'W58RGZ17C0009'
        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
SIKORSKY AIRCRAFT CORPORATION 78286 457,172,325.78 457.17 million 98

Insight

Over the 5-year window for PIID W58RGZ17C0009, obligations are fully concentrated with a single vendor, SIKORSKY AIRCRAFT CORPORATION (CAGE 78286). This vendor accounts for $457.17 million across 98 awards, indicating a highly concentrated award pattern with repeated obligations to the same contractor. No other vendors are present in the provided rows, so there is no evidence of distribution across multiple suppliers in this result set.

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 = 'W58RGZ17C0009'
    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 457,172,325.78 457.17 million 98

Insight

Within the 5-year window for award W58RGZ17C0009, obligations are fully concentrated in NAICS 336411, Aircraft Manufacturing. The award accounts for 98 actions totaling $457.17 million, indicating a highly specialized spending profile with no observable NAICS diversification in the provided data. This concentration suggests the award is tied primarily to aircraft manufacturing requirements rather than a broader mix of goods or services.

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 = 'W58RGZ17C0009'
    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
1520 AIRCRAFT, ROTARY WING 457,172,325.78 457.17 million 98

Insight

Obligations for award W58RGZ17C0009 are concentrated entirely in PSC 1520, Aircraft, Rotary Wing, with $457.17 million obligated across 98 awards over the 5-year window. This indicates a highly focused procurement profile with no diversification across other product service codes in the provided data. The award activity is consistently aligned to rotary-wing aircraft requirements, suggesting this PSC is the dominant driver of obligation volume for this award.

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 = 'W58RGZ17C0009'
    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 481,778,363.65 481.78 million 51
2022 -29,812,848.36 -29.81 million 27
2023 4,155,702.49 4.16 million 7
2024 651,406.00 651.41 thousand 8
2025 399,702.00 399.70 thousand 5

Insight

Obligations for PIID W58RGZ17C0009 are highly concentrated in 2021, when activity totaled $481.78 million across 51 awards, far exceeding all subsequent years. Funding then declined sharply, with a negative net obligation in 2022 (-$29.81 million) and much lower positive obligations in 2023-2025, ranging from $399.70 thousand to $4.16 million. Award counts also dropped materially after 2021, from 51 to 5-27 per year, indicating a clear contraction in both value and volume over the 5-year period.

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.