Award Number

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

Award N0001916C0002 for agency 9700 shows 137 recorded actions over the last 10 years and $1.80 billion in total obligations.

This page summarizes federal procurement activity for award N0001916C0002 within agency 9700 over the last 10 years. The award shows 137 actions and $1,795,489,000 in total obligated value.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and may differ from other FPDS views depending on filters and timing.

Agency ID
9700
PIID
N0001916C0002
Type
Award
Total Obligated
1.80 billion
1,795,489,000.00
Actions
137
Average Action Value
13,105,759.12

Overview

Across the last 10 years, award N0001916C0002 recorded 137 actions with a total obligated amount of $1,795,489,000. The average action value is $13,105,759.12, which provides a simple measure of the scale of activity across the award history.

How to use this page

Use this page to review the award’s obligation trend, action count, and average action value within the selected agency and time window. It is a compact reference for identifying how frequently the award was modified and how much funding was obligated overall.

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 = 'N0001916C0002'
    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 1,795,489,000.00 1.80 billion 137

Insight

Obligations for PIID N0001916C0002 over the 10-year window are fully concentrated within the DEPT OF THE NAVY (agency ID 1700). The Navy accounts for $1.80 billion across 137 awards, indicating a single-agency funding profile with no visible diversification across other top agencies in the provided data. This concentration suggests the award activity is tightly aligned to one departmental 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 = 'N0001916C0002'
        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 4U884 1,405,998,096.00 1.41 billion 127
RAYTHEON COMPANY 389,490,904.00 389.49 million 10

Insight

Obligations on this award are highly concentrated with RAYTHEON COMPANY, which accounts for the full set of top-vendor entries provided. The largest entry, associated with CAGE 4U884, totals $1.41 billion across 127 awards, while a second RAYTHEON COMPANY entry with no CAGE code listed adds $389.49 million across 10 awards. Combined, these entries indicate sustained, high-volume spending with the same vendor name dominating the award’s obligation profile over the 10-year 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 = 'N0001916C0002'
    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
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 1,795,489,000.00 1.80 billion 137

Insight

Obligations for PIID N0001916C0002 are fully concentrated in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology), with $1.80 billion obligated across 137 awards over the 10-year window. This indicates a highly concentrated activity profile with no observed diversification across other NAICS codes in the provided data. The volume of awards suggests repeated procurement activity within a single scientific and technical labor category.

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 = 'N0001916C0002'
    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
AC14 R&D- DEFENSE SYSTEM: AIRCRAFT (ENGINEERING DEVELOPMENT) 1,417,023,429.09 1.42 billion 85
AC14 NATIONAL DEFENSE R&D SERVICES; DEPARTMENT OF DEFENSE - MILITARY; R&D ADMINISTRATIVE EXPENSES 378,465,570.91 378.47 million 52

Insight

Obligations for PIID N0001916C0002 over the 10-year window are heavily concentrated in PSC AC14, with $1.42 billion across 85 awards for R&D–Defense System: Aircraft (Engineering Development). A second AC14-related line accounts for an additional $378.47 million across 52 awards, indicating continued but materially smaller obligation volume in the same PSC family. Together, these entries show a strong concentration of spending in aircraft-related defense R&D and administrative R&D support, with the first line representing the dominant share of obligated dollars.

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 = 'N0001916C0002'
    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
2016 327,761,987.00 327.76 million 9
2017 339,781,479.00 339.78 million 14
2018 283,757,586.00 283.76 million 19
2019 178,528,575.67 178.53 million 22
2020 303,473,709.42 303.47 million 22
2021 232,891,456.00 232.89 million 14
2022 77,932,847.91 77.93 million 14
2023 48,346,424.00 48.35 million 9
2024 2,834,935.00 2.83 million 11
2025 180,000.00 180.00 thousand 3

Insight

Obligations for PIID N0001916C0002 were heavily concentrated in the earlier years of the 10-year window, peaking in 2017 at $339.78 million and remaining above $200 million through 2021 except for 2019. Award activity increased from 9 awards in 2016 to a high of 22 awards in 2019 and 2020, then declined to 11 in 2024 and 3 in 2025. Since 2022, both obligations and award volume have fallen sharply, with obligations dropping from $77.93 million in 2022 to $180 thousand in 2025.

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.