Award Number

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

FPDS award page for award number N0002422C5500 at agency 9700, summarizing last full year obligation and action activity.

This page summarizes procurement activity tied to award number N0002422C5500 for agency ID 9700 during the last full year. It shows 13 award actions with total obligations of 812.56 million dollars and an average action value of 62.50 million dollars.

Generated at 03/20/2026

Analysis period: Last full year

Dollar figures are based on the provided exact total obligated amount of 812,558,294.45 and a readable total of 812.56 million.

Agency ID
9700
PIID
N0002422C5500
Type
Award
Total Obligated
812.56 million
812,558,294.45
Actions
13
Average Action Value
62,504,484.19

Overview

In the last full year, award N0002422C5500 recorded 13 actions and total obligations of 812,558,294.45 dollars. The average action value was 62,504,484.19 dollars, indicating that the award moved through a small number of relatively large-dollar actions.

How to use this page

Use this page to review the scale of obligated funding and the volume of award actions associated with N0002422C5500. The figures provide a compact view of activity for agency ID 9700 over the selected analysis window.

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 = 'N0002422C5500'
    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
1700 DEPT OF THE NAVY 812,558,294.45 812.56 million 13

Insight

Within the 1-year window for PIID N0002422C5500, obligations are fully concentrated in a single top agency: DEPT OF THE NAVY. This agency accounts for $812.56 million across 13 awards, indicating all observed obligations are concentrated in one agency rather than distributed across multiple 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 = 'N0002422C5500'
        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
RAYTHEON COMPANY 7Y193 812,558,294.45 812.56 million 13

Insight

RAYTHEON COMPANY is the sole top vendor associated with this award in the 1-year window, receiving $812.56 million across 13 awards. Obligations are fully concentrated with a single vendor, indicating a highly concentrated award distribution with no visible diversification among top vendors. This level of concentration suggests the award activity is dominated by one contractor relationship.

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 = 'N0002422C5500'
    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
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 812,558,294.45 812.56 million 13

Insight

Within the 1-year window for award N0002422C5500 at agency 9700, all reported obligation is concentrated in NAICS 334511, Search, Detection, Navigation, Guidance, Aeronautical, and Nautical System and Instrument Manufacturing. This NAICS accounts for $812.56 million across 13 awards, indicating a highly concentrated award profile in a single industrial category. No other NAICS codes are reported in the provided rows, so the observed distribution is fully concentrated in this sector.

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 = 'N0002422C5500'
    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
5840 RADAR EQUIPMENT, EXCEPT AIRBORNE 812,558,294.45 812.56 million 13

Insight

Obligations for award N0002422C5500 are entirely concentrated in PSC 5840, Radar Equipment, Except Airborne, with $812.56 million across 13 awards in the 1-year window. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The volume of award activity suggests recurring procurement within the same equipment category rather than a broad mix of purchased goods or services.

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 = 'N0002422C5500'
    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 812,558,294.45 812.56 million 13

Insight

For FY2025, this award accounts for $812.56 million in obligated funds across 13 awards, indicating a high concentration of obligation activity within the one-year window. The average obligation per award is substantial, suggesting funding is concentrated in relatively few actions rather than broadly distributed. This level of activity indicates material annual execution significance for PIID N0002422C5500 under agency 9700.

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.