Award Number

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

Award number W58RGZ19C0027 for agency ID 9700 shows 10 recorded actions in the last full year and net obligations of -$30.52 million.

This award page summarizes procurement activity tied to award number W58RGZ19C0027 for agency ID 9700 over the last full year. The record reflects 10 actions and a total obligated amount of -$30,516,606, with an average action value of -$3,051,660.6.

Generated at 03/20/2026

Analysis period: Last full year

Amounts shown are based on the provided analysis window and reflect the exact total obligated value of -30516606.

Agency ID
9700
PIID
W58RGZ19C0027
Type
Award
Total Obligated
-30.52 million
-30,516,606.00
Actions
10
Average Action Value
-3,051,660.60

Overview

The award record for W58RGZ19C0027 is associated with agency ID 9700 and includes 10 actions in the last full year. The total obligated amount is negative, indicating net deobligations or downward adjustments of $30,516,606 over the period.

How to use this page

Use this page to review the award-level obligation trend, action count, and average action value for the selected period. The figures provide a concise starting point for comparing this award’s activity against other FPDS 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 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 -376,606.00 -376.61 thousand 9
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -30,140,000.00 -30.14 million 1

Insight

Within the 1-year window for PIID W58RGZ19C0027, obligations are highly concentrated in one top agency: DCMA accounts for -$30.14 million across 1 award, far exceeding the DEPT OF THE ARMY’s -$376.61 thousand across 9 awards. The distribution indicates that the overall negative obligated amount is driven primarily by the DCMA transaction, with the Army representing a comparatively small, dispersed share across multiple awards. This pattern suggests a significant downward adjustment or deobligation concentrated at DCMA rather than broad activity across agencies.

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 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
GENERAL ATOMICS AERONAUTICAL SYSTEMS, INC. 0YJB5 -30,516,606.00 -30.52 million 10

Insight

Obligations for PIID W58RGZ19C0027 in the 1-year window are fully concentrated with GENERAL ATOMICS AERONAUTICAL SYSTEMS, INC. (CAGE 0YJB5), which accounts for the only reported vendor activity in this section. The vendor shows 10 awards with a net obligated value of -$30.52 million, indicating all observed obligation activity is tied to a single contractor and is negative over the period. This concentration suggests limited vendor distribution for this award within the selected window.

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 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 -30,516,606.00 -30.52 million 10

Insight

Obligations for this award over the past year were fully concentrated in NAICS 336411, Aircraft Manufacturing, with $30.52 million in negative obligations across 10 awards/actions. This indicates a single-industry distribution with no diversification across other NAICS codes in the provided data. The negative total suggests net deobligations or downward funding adjustments within this sector during the period.

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 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
J015 MAINT/REPAIR/REBUILD OF EQUIPMENT- AIRCRAFT AND AIRFRAME STRUCTURAL COMPONENTS -30,516,606.00 -30.52 million 10

Insight

Obligations are fully concentrated in PSC J015, covering maintenance, repair, and rebuild of aircraft and airframe structural components. Over the 1-year window, 10 awards under this PSC reflect a total obligated amount of -$30.52 million, indicating all recorded activity in this section is tied to a single product/service category. The negative total suggests deobligations or downward adjustments rather than net new funding in this period.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 -30,516,606.00 -30.52 million 10

Insight

For award PIID W58RGZ19C0027, the 1-year annual trend shows $30.52 million in net deobligations in FY2025 across 10 awards/actions. The negative obligated total indicates a downward funding adjustment concentrated within the year rather than incremental obligation growth. With only one year of data provided, the available evidence supports a snapshot of deobligation activity but does not establish a multi-year trend.

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.