This award record for PIID W58RGZ19C0027 under agency ID 9700 summarizes activity in the last 5 years. Total obligated amount is $1,138,911,902.53 across 160 award actions, with an average action value of $7,118,199.39.
Award Number
Award Number 9700 / W58RGZ19C0027 Federal Contract Action Summary (Last 5 Years)
Award number W58RGZ19C0027 for agency 9700 shows 160 actions over the last 5 years with $1.14 billion obligated.
Dollar figures reflect the last 5 years of award activity and may differ from totals on other procurement views depending on timing and scope.
Overview
The award record for PIID W58RGZ19C0027 shows sustained procurement activity across the last 5 years. It includes 160 award actions and $1,138,911,902.53 in total obligated value, indicating a high-volume obligation pattern for this award number.
How to use this page
Use this page to review award-level activity for PIID W58RGZ19C0027, including total obligated value and action count. The average action value of $7,118,199.39 provides a simple benchmark for comparing this award against other procurement records in agency ID 9700.
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 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 | 1,169,051,902.53 | 1.17 billion | 158 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | -30,140,000.00 | -30.14 million | 2 |
Insight
Obligations under PIID W58RGZ19C0027 over the past 5 years are highly concentrated in the DEPT OF THE ARMY, which accounts for $1.17 billion across 158 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) represents a much smaller share and is negative at -$30.14 million across 2 awards, indicating downward adjustment activity rather than net new obligation. Overall, the award is dominated by Army funding, with DCMA activity material only as an offset.
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 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 |
|---|---|---|---|---|
| GENERAL ATOMICS AERONAUTICAL SYSTEMS, INC. | 0YJB5 | 1,138,911,902.53 | 1.14 billion | 160 |
Insight
Obligations under PIID W58RGZ19C0027 over the past 5 years are fully concentrated with a single vendor, GENERAL ATOMICS AERONAUTICAL SYSTEMS, INC. (CAGE 0YJB5). The award reflects 160 actions totaling $1.14 billion, indicating sustained, exclusive vendor reliance rather than a distributed vendor base.
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 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 | 1,138,911,902.53 | 1.14 billion | 160 |
Insight
Within the 5-year window for PIID W58RGZ19C0027 under Agency ID 9700, obligations are concentrated entirely in NAICS 336411, Aircraft Manufacturing. This single NAICS accounts for $1.14 billion across 160 awards, indicating a highly focused procurement profile with no diversification across other reported NAICS codes in this section. The distribution suggests the award activity is dominated by aircraft manufacturing work.
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 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 |
|---|---|---|---|---|
| J015 | MAINT/REPAIR/REBUILD OF EQUIPMENT- AIRCRAFT AND AIRFRAME STRUCTURAL COMPONENTS | 1,138,911,902.53 | 1.14 billion | 160 |
Insight
Obligations under PIID W58RGZ19C0027 are fully concentrated in PSC J015, covering maintenance, repair, and rebuild of aircraft and airframe structural components. Over the 5-year window, this PSC accounts for $1.14 billion across 160 awards, indicating a highly focused spending profile rather than a diversified distribution across multiple product/service categories.
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 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 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
Annual obligations for PIID W58RGZ19C0027 were concentrated in 2021–2023, with funding remaining above 354 million each year and peaking at 394.01 million in 2021. Award activity also was highest in this period, ranging from 37 to 48 awards, indicating sustained transaction volume. Obligations dropped sharply in 2024 to 46.64 million with 23 awards, and 2025 shows a negative obligated amount of 30.52 million across 10 awards, suggesting significant downward adjustment or deobligation activity in the most 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.