Award Number

Award Number 9700 / W58RGZ16C0023 Federal Contract Action Summary (Last Year)

FPDS award page for award number W58RGZ16C0023, showing obligations and action activity for agency 9700 during the last full year.

This page summarizes award number W58RGZ16C0023 for agency 9700 over the last full year. Total obligated dollars were 23.54 million across 31 award actions, with an average action value of 759,367.27.

Generated at 03/20/2026

Analysis period: Last full year

Totals shown use the exact obligated amount of 23,540,385.37 and the reported action count for the selected analysis window.

Agency ID
9700
PIID
W58RGZ16C0023
Type
Award
Total Obligated
23.54 million
23,540,385.37
Actions
31
Average Action Value
759,367.27

Overview

For the last full year, award number W58RGZ16C0023 shows 23,540,385.37 in total obligated dollars across 31 actions. The average action value was 759,367.27, indicating multiple recorded obligation changes within the analysis window. This page is focused on the award-level record for agency 9700.

How to use this page

Use this page to review the award's obligated total, action count, and average action value for the selected period. The figures provide a concise view of how activity accumulated across the last full year without adding details beyond the reported award record.

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 = 'W58RGZ16C0023'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 23,540,385.37 23.54 million 13
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 18

Insight

Over the 1-year window, obligations for PIID W58RGZ16C0023 are concentrated almost entirely with the DEPT OF THE ARMY, which accounts for $23.54 million across 13 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears on 18 awards but with no obligated dollars, indicating administrative or oversight activity rather than funded obligation. This distribution suggests the award’s financial activity is concentrated in a single agency while DCMA participation is non-obligating.

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 = 'W58RGZ16C0023'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 23,540,385.37 23.54 million 31

Insight

Within the 1-year window for PIID W58RGZ16C0023, obligations in this section are fully concentrated with a single vendor, BOEING COMPANY, THE (CAGE 8V613). This vendor received 31 awards totaling $23.54 million, indicating a high concentration of obligated dollars and award activity with one supplier. No distribution across additional vendors is present 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 = 'W58RGZ16C0023'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 23,540,385.37 23.54 million 31

Insight

Over the 1-year window, obligations under PIID W58RGZ16C0023 are fully concentrated in NAICS 336411, Aircraft Manufacturing. This category accounts for $23.54 million across 31 awards, indicating a narrow industrial mix and repeated activity within the same NAICS code. No other NAICS codes are present in the provided data, so there is no observable distribution across multiple industries for this award.

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 = 'W58RGZ16C0023'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 23,540,385.37 23.54 million 31

Insight

Obligations in the past year are fully concentrated in PSC 5342, Hardware, Weapon System, with $23.54 million across 31 awards. This indicates a narrow procurement focus within the award, with all observed obligated activity attributed to a single PSC rather than being distributed across multiple product or service categories. The average obligation per award is approximately $0.76 million, suggesting multiple smaller awards within the same hardware category rather than one isolated obligation.

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 = 'W58RGZ16C0023'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 23,540,385.37 23.54 million 31

Insight

For PIID W58RGZ16C0023 over the 1-year window, reported obligations are concentrated in FY 2025 at $23.54 million across 31 awards/actions. This indicates all observed obligation activity in the period is clustered in a single year, with no year-over-year spread available within the provided data. The average obligation per reported award/action is approximately $0.76 million, suggesting moderate distribution across multiple entries rather than a single large outlier.

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