This page summarizes federal procurement activity tied to award number W58RGZ26C0002 for agency 9700. The record shows one action in the last 10 years, with total obligated dollars of 2,295,831,204 and an average action value of 2,295,831,204.
Award Number
Award Number 9700 / W58RGZ26C0002 Federal Contract Action Summary (Last 10 Years)
Award number W58RGZ26C0002 for agency 9700 shows 1 recorded action over the last 10 years with total obligated funding of 2.30 billion.
Figures reflect the provided analysis window and the single recorded award action; totals are shown as reported and may differ by rounding in display fields.
Overview
The award record for W58RGZ26C0002 shows a single action in the last 10 years. Total obligated funding is 2,295,831,204, which is also the average action value because only one action is recorded.
How to use this page
Use this page to identify the award number, agency ID, and obligation totals associated with W58RGZ26C0002. It is useful for quick reference when checking whether the award has one recorded action and for comparing the reported total against other FPDS records.
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 = 'W58RGZ26C0002'
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 | 2,295,831,204.00 | 2.30 billion | 1 |
Insight
Over the 10-year window for PIID W58RGZ26C0002, obligations are concentrated in a single agency: the Department of the Army. The reported obligation total is 2.30 billion across 1 award record, indicating no observable distribution across additional agencies in the provided data. This level of concentration suggests the award has been administered entirely within one agency channel for the period reviewed.
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 = 'W58RGZ26C0002'
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 |
|---|---|---|---|---|
| THE BOEING COMPANY | 8V613 | 2,295,831,204.00 | 2.30 billion | 1 |
Insight
For PIID W58RGZ26C0002 over the 10-year window, obligations are fully concentrated with a single vendor, THE BOEING COMPANY (CAGE 8V613), accounting for $2.30 billion across 1 award. This indicates a highly concentrated award profile with no visible distribution across other vendors in the provided data.
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 = 'W58RGZ26C0002'
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 | 2,295,831,204.00 | 2.30 billion | 1 |
Insight
Obligations for PIID W58RGZ26C0002 over the 10-year window are fully concentrated in NAICS 336411, Aircraft Manufacturing. The award is represented by a single obligation of $2.30 billion across one action, indicating an entirely undiversified NAICS profile for this award. This concentration suggests the procurement is narrowly aligned to a single aircraft manufacturing requirement.
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 = 'W58RGZ26C0002'
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 |
|---|---|---|---|---|
| 5342 | HARDWARE, WEAPON SYSTEM | 2,295,831,204.00 | 2.30 billion | 1 |
Insight
Obligations for PIID W58RGZ26C0002 are fully concentrated in PSC 5342, Hardware, Weapon System, with $2.30 billion obligated across a single award. This indicates no PSC-level distribution within the reported 10-year window for this award. The concentration suggests the procurement is wholly tied to a single weapon-system hardware acquisition 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 = 'W58RGZ26C0002'
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 |
|---|---|---|---|
| 2025 | 2,295,831,204.00 | 2.30 billion | 1 |
Insight
For PIID W58RGZ26C0002, the 10-year annual trend provided shows obligations concentrated entirely in FY 2025, with one award totaling $2.30 billion. No additional years are present in the supplied rows, so the observed distribution is fully concentrated in a single fiscal year. This indicates a lack of multi-year obligation spread within the reported data.
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.