This page presents the award history for PIID W58RGZ19C0027 over the last 10 years. The award shows 226 actions with total obligations of 1.90 billion dollars and an average action value of 8,390,075.53.
Award Number
Award Number 9700 / W58RGZ19C0027 Federal Contract Action Summary (Last 10 Years)
Federal procurement award page for award number W58RGZ19C0027 under agency ID 9700, summarizing the last 10 years of obligation activity.
Totals reflect readable and exact obligated amounts as reported for this award and analysis window.
Overview
Award W58RGZ19C0027 is associated with agency ID 9700 and shows 226 recorded actions in the last 10 years. The total obligated amount is 1,896,157,069.11, which is readable as 1.90 billion dollars, and the average action value is 8,390,075.53. This provides a compact view of award activity, funding volume, and action frequency for the period.
How to use this page
Use this page to review obligation concentration, action volume, and average action size for PIID W58RGZ19C0027. The data is useful for tracking award activity over time and for comparing this award against other procurement records within the same agency context.
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 = 'W58RGZ19C0027'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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,926,297,069.11 | 1.93 billion | 224 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | -30,140,000.00 | -30.14 million | 2 |
Insight
Within the 10-year window for award PIID W58RGZ19C0027, obligations are highly concentrated in the Department of the Army, which accounts for $1.93 billion across 224 awards. Defense Contract Management Agency records a much smaller, offsetting total of -$30.14 million across 2 awards. This distribution indicates that the award’s funding history is overwhelmingly driven by the Army, with DCMA contributing only limited negative adjustments.
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 = 'W58RGZ19C0027'
AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
AND content__award__vendor__vendorHeader__vendorName != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 |
|---|---|---|---|---|
| GENERAL ATOMICS AERONAUTICAL SYSTEMS, INC. | 0YJB5 | 1,896,157,069.11 | 1.90 billion | 226 |
Insight
Obligations for PIID W58RGZ19C0027 are fully concentrated with GENERAL ATOMICS AERONAUTICAL SYSTEMS, INC. (CAGE 0YJB5), which accounts for $1.90 billion across 226 awards over the 10-year window. This indicates a highly concentrated vendor profile with no other vendors represented in the provided data. The award count suggests repeated obligation activity with the same contractor rather than a broad distribution across suppliers.
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 = 'W58RGZ19C0027'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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,896,157,069.11 | 1.90 billion | 226 |
Insight
Obligations for PIID W58RGZ19C0027 are fully concentrated in NAICS 336411, Aircraft Manufacturing, over the 10-year window. This category accounts for the entirety of the listed activity, with 226 awards totaling $1.90 billion. The distribution indicates a single-industry procurement profile with no diversification across other NAICS codes 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 = 'W58RGZ19C0027'
AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
AND content__award__productOrServiceInformation__productOrServiceCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 |
|---|---|---|---|---|
| J015 | MAINT/REPAIR/REBUILD OF EQUIPMENT- AIRCRAFT AND AIRFRAME STRUCTURAL COMPONENTS | 1,896,157,069.11 | 1.90 billion | 226 |
Insight
Obligations for PIID W58RGZ19C0027 are fully concentrated in PSC J015, Maintenance/Repair/Rebuild of Equipment—Aircraft and Airframe Structural Components. Over the 10-year window, this PSC accounts for $1.90 billion across 226 awards, indicating a sustained and highly focused procurement pattern. No other PSCs are listed in this section, so the observed obligation profile is entirely concentrated in this category.
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 = 'W58RGZ19C0027'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2019 | 354,365,171.28 | 354.37 million | 31 |
| 2020 | 402,879,995.30 | 402.88 million | 35 |
| 2021 | 394,014,429.00 | 394.01 million | 42 |
| 2022 | 354,158,837.00 | 354.16 million | 37 |
| 2023 | 374,612,962.00 | 374.61 million | 48 |
| 2024 | 46,642,280.53 | 46.64 million | 23 |
| 2025 | -30,516,606.00 | -30.52 million | 10 |
Insight
Obligations for PIID W58RGZ19C0027 were concentrated in 2019-2023, with annual funding remaining relatively stable at roughly $354.16 million to $402.88 million and award counts ranging from 31 to 48. The award peaked in 2020 at $402.88 million, while 2023 recorded the highest award count at 48 despite slightly lower obligations than the 2020-2021 levels. Activity dropped sharply in 2024 to $46.64 million across 23 awards, followed by net deobligation in 2025 of $30.52 million across 10 awards, indicating a material downward shift in recent years.
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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.