This page summarizes federal procurement activity for award number N0002412C2115 under agency ID 9700. Over the last 10 years, the award recorded 1,391 actions and $11,066,958,172 in total obligations.
Award Number
Award Number 9700 / N0002412C2115 Federal Contract Action Summary (Last 10 Years)
Award number N0002412C2115 for agency 9700 covers 1,391 award actions over the last 10 years, with total obligations of $11.07 billion.
Amounts are shown in readable and exact forms, and the average action value is $7,956,116.59.
Overview
The award record for N0002412C2115 shows sustained procurement activity within agency 9700 across the last 10 years. Total obligations reached $11,066,958,172 across 1,391 actions, which indicates repeated award activity rather than a single isolated transaction.
How to use this page
Use this page to review the award-level procurement footprint for N0002412C2115 and compare its obligation and action volume over time. The average action value of $7,956,116.59 provides a simple benchmark for assessing the scale of individual actions within 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 = 'N0002412C2115'
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 | 11,066,958,172.00 | 11.07 billion | 1,391 |
Insight
Obligations for this award are fully concentrated in a single top agency: the Department of the Navy, which accounts for $11.07 billion across 1,391 awards in the 10-year window. This indicates a highly concentrated procurement relationship with no diversification across other agencies in the provided results. The award appears to be driven primarily by Navy activity rather than a broader interagency distribution.
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 = 'N0002412C2115'
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 | 6,104,943,981.00 | 6.10 billion | 121 | |
| ELECTRIC BOAT CORPORATION | 96169 | 4,962,014,191.00 | 4.96 billion | 1,270 |
Insight
Obligations under PIID N0002412C2115 are highly concentrated in ELECTRIC BOAT CORPORATION, with $6.10 billion across 121 awards under one vendor entry and an additional $4.96 billion across 1,270 awards under the same name with CAGE 96169. Combined, these rows account for $11.06 billion and 1,391 awards, indicating a strong concentration of activity with the same contractor identity represented in two vendor records. The larger dollar value is associated with far fewer awards, suggesting a smaller number of high-value obligations alongside a broader base of lower-value awards.
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 = 'N0002412C2115'
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 |
|---|---|---|---|---|
| 336611 | SHIP BUILDING AND REPAIRING | 11,066,958,172.00 | 11.07 billion | 1,391 |
Insight
The award is fully concentrated in NAICS 336611, Ship Building and Repairing, with $11.07 billion obligated across 1,391 awards over the 10-year window. This indicates a highly specialized procurement pattern centered on ship construction and repair rather than a diversified industrial mix. The volume of awards alongside the very large obligation total suggests sustained, programmatic activity in this single NAICS 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 = 'N0002412C2115'
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 | 11,066,958,172.00 | 11.07 billion | 1,391 |
Insight
Over the 10-year window, obligations for PIID N0002412C2115 are fully concentrated in PSC 1905, Combat Ships and Landing Vessels. This PSC accounts for $11.07 billion across 1,391 awards, indicating sustained activity and a highly focused procurement pattern. No other PSCs are provided for this award, so diversification across product/service categories cannot be assessed from the supplied rows.
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 = 'N0002412C2115'
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 | 3,340,851,442.00 | 3.34 billion | 112 |
| 2017 | 2,843,012,990.00 | 2.84 billion | 120 |
| 2018 | 2,551,927,722.00 | 2.55 billion | 99 |
| 2019 | 83,864,782.00 | 83.86 million | 162 |
| 2020 | 83,125,066.00 | 83.13 million | 99 |
| 2021 | 222,110,231.00 | 222.11 million | 121 |
| 2022 | 262,062,588.00 | 262.06 million | 140 |
| 2023 | 365,791,303.00 | 365.79 million | 205 |
| 2024 | 303,766,802.00 | 303.77 million | 179 |
| 2025 | 1,010,445,246.00 | 1.01 billion | 154 |
Insight
Obligations under award N0002412C2115 were heavily concentrated in the earlier years of the period, with 2016 through 2018 accounting for the largest annual obligations at 3.34 billion, 2.84 billion, and 2.55 billion, respectively. Annual obligated amounts then dropped sharply to the 83.13–83.86 million range in 2019–2020, before rising again from 2021 through 2024 and reaching 1.01 billion in 2025. Award counts were more dispersed across the period, peaking at 205 in 2023, which indicates activity remained frequent even when obligated dollars were comparatively lower.
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.