Award Number

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

Federal procurement analysis for award number N0002422C5500 under agency ID 9700 over the last 10 years.

This page summarizes obligation activity for award number N0002422C5500 in agency ID 9700 during the last 10 years. The award shows 37 actions and total obligations of 3.27 billion dollars.

Generated at 03/20/2026

Analysis period: Last 10 years

Dollar figures are based on the provided analysis window and reflect total obligated exact of 3266151877.19 and an average action value of 88274375.06.

Agency ID
9700
PIID
N0002422C5500
Type
Award
Total Obligated
3.27 billion
3,266,151,877.19
Actions
37
Average Action Value
88,274,375.06

Overview

Award number N0002422C5500 is associated with agency ID 9700 and recorded 37 award actions in the last 10 years. Total obligated funding for the period is 3,266,151,877.19 dollars, with an average action value of 88,274,375.06 dollars.

How to use this page

Use this page to review the award's obligation volume and action activity over the selected 10-year window. The figures support basic FPDS analysis by showing cumulative obligated dollars, action frequency, and average action value for the award.

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 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
1700 DEPT OF THE NAVY 3,266,151,877.19 3.27 billion 37

Insight

Over the 10-year window, obligations for PIID N0002422C5500 are fully concentrated in the Department of the Navy. The Navy accounts for $3.27 billion across 37 awards, indicating a highly concentrated funding pattern with no other agencies represented in the provided results. This distribution suggests the award activity is tied almost entirely to a single agency customer.

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 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
RAYTHEON COMPANY 7Y193 3,266,151,877.19 3.27 billion 37

Insight

RAYTHEON COMPANY is the sole top vendor for this award over the 10-year window, accounting for $3.27 billion across 37 awards. This indicates a highly concentrated obligation pattern with all observed award activity in this view tied to a single vendor. The distribution suggests sustained reliance on one contractor rather than a diversified vendor base.

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 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
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 3,266,151,877.19 3.27 billion 37

Insight

Obligations under PIID N0002422C5500 are fully concentrated in NAICS 334511, with $3.27 billion obligated across 37 awards in the 10-year window. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The concentration suggests the award activity is consistently tied to search, detection, navigation, guidance, aeronautical, and nautical systems and instruments manufacturing.

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 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
5840 RADAR EQUIPMENT, EXCEPT AIRBORNE 3,266,151,877.19 3.27 billion 37

Insight

Obligations are fully concentrated in PSC 5840, Radar Equipment, Except Airborne, totaling $3.27 billion across 37 awards. This indicates the award record is highly specialized, with no evidence of PSC diversification within the provided results. The volume of awards alongside the concentrated obligated amount suggests sustained procurement activity in this equipment category over the 10-year window.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2022 1,089,411,446.00 1.09 billion 8
2023 632,256,405.88 632.26 million 5
2024 731,925,730.86 731.93 million 11
2025 812,558,294.45 812.56 million 13

Insight

Obligations for PIID N0002422C5500 were concentrated in 2022 at $1.09 billion across 8 awards, followed by a lower level in 2023 at $632.26 million across 5 awards. Activity then rebounded in 2024 and 2025, reaching $731.93 million across 11 awards and $812.56 million across 13 awards, respectively. The pattern indicates a post-2022 decline followed by sustained recovery, with award volume increasing even as obligations remained below the 2022 peak.

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.