This page summarizes federal award activity for PIID N0002413C2128 within agency ID 9700 over the last 10 years. The award shows total obligated amounts of 1.58 billion across 339 actions, with an average action value of 4,662,253.67.
Award Number
Award Number 9700 / N0002413C2128 Federal Contract Action Summary (Last 10 Years)
Federal procurement summary for award number N0002413C2128 under agency ID 9700, covering obligations and action history over the last 10 years.
Totals reflect the provided analysis window and may differ from values outside the last 10 years.
Overview
Award number N0002413C2128 is associated with agency ID 9700 and shows 339 recorded actions in the last 10 years. Total obligated value is 1,580,503,995, which is approximately 1.58 billion, and the average action value is 4,662,253.67. These figures provide a concise view of the award’s scale and activity level within the analysis window.
How to use this page
Use this page to review obligation totals and action frequency for PIID N0002413C2128. The summary is useful for identifying the overall size of the award and comparing its action pattern against other procurement records in the same period. It is limited to the provided last-10-years analysis window and does not infer detail beyond the supplied data.
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 = 'N0002413C2128'
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,580,503,995.00 | 1.58 billion | 339 |
Insight
Within the 10-year window for award PIID N0002413C2128, obligations are concentrated entirely with DEPT OF THE NAVY (agency ID 1700), which accounts for 1.58 billion across 339 awards. This indicates a highly focused funding pattern with no other agencies appearing in the provided results. The volume of awards alongside the single-agency concentration suggests sustained procurement activity within one agency domain rather than broad distribution 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 = 'N0002413C2128'
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 |
|---|---|---|---|---|
| ELECTRIC BOAT CORPORATION | 859,767,196.00 | 859.77 million | 102 | |
| ELECTRIC BOAT CORPORATION | 96169 | 720,736,799.00 | 720.74 million | 237 |
Insight
Obligations for PIID N0002413C2128 are highly concentrated in ELECTRIC BOAT CORPORATION across the 10-year window, with two vendor records accounting for $1.58 billion combined. The uncoded vendor record represents $859.77 million across 102 awards, while CAGE 96169 represents $720.74 million across 237 awards. This distribution indicates sustained awarding to the same contractor, with obligations split across multiple vendor identifiers rather than a single consolidated record.
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 = 'N0002413C2128'
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 |
|---|---|---|---|---|
| 541330 | ENGINEERING SERVICES | 1,580,503,995.00 | 1.58 billion | 339 |
Insight
Obligations for this award are fully concentrated in NAICS 541330, Engineering Services, with $1.58 billion obligated across 339 awards/actions in the 10-year window. This indicates a highly focused services profile with no diversification across other NAICS categories in the provided data. The volume of award activity suggests repeated procurement in the same technical service area rather than a broad contract mix.
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 = 'N0002413C2128'
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 |
|---|---|---|---|---|
| 1905 | COMBAT SHIPS AND LANDING VESSELS | 1,580,503,995.00 | 1.58 billion | 339 |
Insight
Obligations are fully concentrated in PSC 1905, Combat Ships and Landing Vessels, totaling $1.58 billion across 339 awards over the 10-year window. This indicates a highly focused procurement profile for PIID N0002413C2128, with no evidence in the provided data of diversification across other product service codes. The volume of awards relative to the obligated amount suggests repeated activity within a single ship-related category.
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 = 'N0002413C2128'
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 | 704,536,950.00 | 704.54 million | 96 |
| 2017 | 716,746,206.00 | 716.75 million | 115 |
| 2018 | 38,308,516.00 | 38.31 million | 41 |
| 2019 | 46,631,509.00 | 46.63 million | 22 |
| 2020 | 16,433,067.00 | 16.43 million | 19 |
| 2021 | 12,419,318.00 | 12.42 million | 16 |
| 2022 | 12,454,115.00 | 12.45 million | 10 |
| 2023 | 36,024,682.00 | 36.02 million | 11 |
| 2024 | -3,050,368.00 | -3.05 million | 6 |
| 2025 | 0.00 | 0.00 | 3 |
Insight
Obligations for PIID N0002413C2128 were heavily concentrated in 2016 and 2017, which together account for more than $1.4 billion and dominate the 10-year period. After 2017, annual obligations declined sharply and remained comparatively low, generally between about $12 million and $46 million from 2018 through 2023. Activity also fell in count terms from 115 awards in 2017 to 6 in 2024 and 3 in 2025, with 2024 reflecting a net negative obligated amount.
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.