This page summarizes the federal procurement activity for award number N0001916C0002 within agency ID 9700 over the last 5 years. The award shows $362,185,662.91 in total obligated amount across 51 actions, for an average action value of $7,101,679.66.
Award Number
Award Number 9700 / N0001916C0002 Federal Contract Action Summary (Last 5 Years)
Award number N0001916C0002 under agency ID 9700 shows 51 recorded actions over the last 5 years, with total obligations of $362.19 million.
Dollar figures are shown as provided for the selected analysis window and may differ by rounding.
Overview
Award number N0001916C0002 is associated with agency ID 9700 and shows documented procurement activity across the last 5 years. The record includes 51 award actions and total obligations of $362,185,662.91, which yields an average action value of $7,101,679.66.
How to use this page
Use this page to review the overall scale and pacing of award activity tied to N0001916C0002. The figures support quick comparison against other awards by total obligated amount, action count, and average action value within the same 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 = 'N0001916C0002'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 | 362,185,662.91 | 362.19 million | 51 |
Insight
Over the 5-year window, obligations for PIID N0001916C0002 are fully concentrated in a single agency: the Department of the Navy. The award reflects 51 transactions totaling $362.19 million, indicating sustained funding activity rather than a one-time obligation. With no other agencies represented in the provided rows, there is no evidence of cross-agency distribution for this award.
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 5 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 | 362,185,662.91 | 362.19 million | 51 |
Insight
Over the 5-year window for award N0001916C0002, obligations are fully concentrated with a single vendor, RAYTHEON COMPANY (CAGE 4U884). This vendor received 51 awards totaling $362.19 million, indicating a high degree of vendor concentration with no diversification evident in the provided data. The pattern suggests sustained reliance on one incumbent supplier for this contract activity.
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 5 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) | 362,185,662.91 | 362.19 million | 51 |
Insight
Over the 5-year window, obligations for PIID N0001916C0002 are concentrated entirely in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology). This NAICS accounts for $362.19 million across 51 awards, indicating a highly concentrated spend profile with no diversification across other industry classifications in the provided data.
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 5 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 | NATIONAL DEFENSE R&D SERVICES; DEPARTMENT OF DEFENSE - MILITARY; R&D ADMINISTRATIVE EXPENSES | 362,185,662.91 | 362.19 million | 51 |
Insight
Over the 5-year window, obligations under PIID N0001916C0002 are fully concentrated in PSC AC14, with $362.19 million across 51 awards. This indicates a single dominant PSC category with no diversification across other product or service codes in the provided data. The award count suggests repeated activity within the same R&D administrative expense classification rather than sporadic one-off obligations.
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 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 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 are heavily front-loaded in the five-year period, with 2021 accounting for 232.89 million across 14 awards, far exceeding subsequent years. Funding declines sharply in 2022 and 2023 to 77.93 million and 48.35 million, then falls to 2.83 million in 2024 and 180 thousand in 2025. Award counts are less volatile than dollars, remaining between 9 and 14 awards through 2024 before dropping to 3 in 2025, indicating a pronounced reduction in dollar value rather than in award activity until the most recent year.
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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.