Award Number

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

FPDS award number page for PIID W58RGZ13C0002 under agency ID 9700, showing last full year award activity and obligated amounts.

This page summarizes federal award activity for award number W58RGZ13C0002 associated with agency ID 9700 during the last full year. The record shows 5 award actions and no obligated value in the readable totals.

Generated at 03/20/2026

Analysis period: Last full year

Total obligated is listed as 0.00 in readable form and 0 in exact form, with an average action value of 0 across 5 actions.

Agency ID
9700
PIID
W58RGZ13C0002
Type
Award
Total Obligated
0.00
0.00
Actions
5
Average Action Value
0.00

Overview

The overview for award number W58RGZ13C0002 is limited to the provided award-level totals for the last full year. It includes 5 actions and shows no obligated dollars in either readable or exact form.

How to use this page

Use this page to review the award identifier, agency context, action count, and obligated totals for the analysis window. The values support basic award lookup and comparison without additional spending detail in the provided inputs.

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 = 'W58RGZ13C0002'
    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 0.00 0.00 1
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 4

Insight

Within the 1-year window, award activity under PIID W58RGZ13C0002 is limited to two agencies and is split across five awards. DEPT OF THE ARMY accounts for 1 award and DCMA accounts for 4 awards, indicating that activity is more concentrated with DCMA by count. Reported obligated amounts are 0.00 for both agencies, so the current distribution reflects administrative or non-obligated activity rather than funded obligation concentration.

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 = 'W58RGZ13C0002'
        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
THE BOEING COMPANY 77272 0.00 0.00 5

Insight

Within the 1-year window for PIID W58RGZ13C0002, THE BOEING COMPANY (CAGE 77272) is the only listed vendor in this section, indicating complete concentration among the provided rows. The vendor has 5 awards associated with the action set, but total obligated value is 0.00, so the activity reflects award count without recorded obligation dollars. This suggests a narrow vendor distribution with no measurable funding concentration in the reported period.

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 = 'W58RGZ13C0002'
    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 0.00 0.00 5

Insight

For award PIID W58RGZ13C0002 within Agency 9700 over the last year, obligations are entirely concentrated in NAICS 336411, Aircraft Manufacturing. This NAICS accounts for all 5 reported awards in the window, but total obligated dollars are $0.00, indicating activity without recorded obligation value. The pattern suggests a highly concentrated award distribution with no monetary outlay captured in this 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 = 'W58RGZ13C0002'
    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
1520 AIRCRAFT, ROTARY WING 0.00 0.00 5

Insight

For award W58RGZ13C0002 over the past year, obligations are entirely concentrated in PSC 1520, Aircraft, Rotary Wing. This PSC accounts for all 5 awards in the queried period, with reported obligated dollars of $0.00. The pattern indicates activity limited to this product/service category, but with no recorded obligation value in the period provided.

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 = 'W58RGZ13C0002'
    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 0.00 0.00 5

Insight

In the 1-year window, award PIID W58RGZ13C0002 records all reported obligations in FY2025, with $0.00 obligated across 5 awards. This indicates complete concentration of the activity count in a single year, but no obligated dollars were recorded in the provided data. The pattern suggests award actions occurred without associated obligation amounts during the period.

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.