Federal Contractor

RAYTHEON COMPANY Federal Contract Obligations (Last Year)

RAYTHEON COMPANY (CAGE 5R497, UEI JLWLJXQ3M995) received $241.20 million across 66 award actions in the last full year, led by the Department of the Air Force.

In the last full year, RAYTHEON COMPANY recorded 66 federal award actions totaling $241.20 million, for an average action value of $3.65 million. Nearly all obligated dollars came from the Department of the Air Force, with a smaller award from NOAA.

Generated at 03/21/2026

Analysis period: Last full year

Totals reflect the analysis window provided and are based on readable obligated amounts and award counts from FPDS data.

CAGE Code
5R497
UEI
JLWLJXQ3M995
Total Obligated
241.20 million
241,202,621.90
Award Actions
66
Average Action Value
3,654,585.18

About RAYTHEON COMPANY federal contract activity

RAYTHEON COMPANY, identified by CAGE 5R497 and UEI JLWLJXQ3M995, recorded $241.20 million in obligated contract value across 66 awards in the last full year, for an average award value of $3.65 million. The profile indicates a concentrated federal contracting footprint with most obligation volume flowing through a single department.

Agency mix and customer concentration

The DEPT OF THE AIR FORCE accounted for nearly all activity, with $240.29 million across 65 awards, or roughly 99.6% of total obligated value. The only other recorded customer was the NATIONAL OCEANIC AND ATMOSPHERIC ADMINISTRATION, which obligated $911.24 thousand across 1 award, indicating limited multi-agency diversification.

Industry profile based on NAICS activity

Contracting was dominated by NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology), which represented $200.01 million across 48 awards. NAICS 927110, Space Research and Technology, added $40.23 million across 16 awards, while NAICS 541715 contributed a comparatively small $961.24 thousand across 2 awards.

Annual contract trend over the analysis window

The annual trend shows all recorded obligations in 2025, totaling $241.20 million across 66 awards. With only one year in the analysis window, the data support a volume snapshot rather than a multi-year growth assessment.

How to interpret this page

This summary is based on FPDS-observed awards for the vendor during the last full year, aggregated by obligated dollars, award count, agency, and NAICS code. Totals reflect the supplied analysis window and should be interpreted as procurement activity captured in that period, not as a complete measure of all vendor business.

Top Agencies

SELECT
    agency_id,
    agency_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
        anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '5R497'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
5700 DEPT OF THE AIR FORCE 240,291,381.71 240.29 million 65
1330 NATIONAL OCEANIC AND ATMOSPHERIC ADMINISTRATION 911,240.19 911.24 thousand 1

Insight

RAYTHEON COMPANY’s obligations in the last full year were highly concentrated in the DEPT OF THE AIR FORCE, which accounted for 240.29 million of 241.20 million total obligated across 65 of 66 awards. NATIONAL OCEANIC AND ATMOSPHERIC ADMINISTRATION represented a minor share at 911.24 thousand in 1 award. This pattern indicates a narrow agency distribution and substantial reliance on a single federal customer during the period.

Top NAICS

SELECT
    naics_code,
    naics_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
        anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '5R497'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 200,013,607.71 200.01 million 48
927110 SPACE RESEARCH AND TECHNOLOGY 40,227,774.00 40.23 million 16
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 961,240.19 961.24 thousand 2

Insight

RAYTHEON COMPANY’s obligations in the last full year were highly concentrated in NAICS 541712, which accounted for $200.01 million across 48 awards, or about 83% of total obligated dollars. NAICS 927110 was the second-largest category at $40.23 million across 16 awards, bringing the top two NAICS codes to roughly 99% of all obligations. NAICS 541715 was immaterial by comparison at $961.24 thousand across 2 awards, indicating a narrow obligation profile centered on R&D and space-related work.

Annual Trend

SELECT
    year,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '5R497'
        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 DESC
Year Total Obligated Readable Award Actions
2025 241,202,621.90 241.20 million 66

Insight

RAYTHEON COMPANY (CAGE 5R497) recorded $241.20 million in total obligated value across 66 awards during the last full year, for an average award value of about $3.65 million. The annual trend is concentrated in a single reported year (2025), so no multi-year directional change can be assessed from this window. The award profile indicates moderate distribution across multiple actions rather than dependence on a small number of very large awards.

Use FPDS Query for deeper contractor analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, 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.