This award page summarizes activity for award number N0002412C2115 within agency ID 9700. The analysis window covers the last 5 years and reflects $2,164,176,170 in total obligations across 799 actions.
Award Number
Award Number 9700 / N0002412C2115 Federal Contract Action Summary (Last 5 Years)
Award number N0002412C2115 for agency ID 9700 shows 799 actions and $2.16 billion obligated over the last 5 years.
Total obligated is shown as both a readable value and an exact value; average action value is $2,708,605.97.
Overview
Award number N0002412C2115 is associated with agency ID 9700 and shows sustained procurement activity over the last 5 years. The record includes 799 award actions and total obligated dollars of $2,164,176,170, with an average action value of $2,708,605.97. These figures provide a concise view of the award's scale and transaction frequency.
How to use this page
Use this page to review the award's obligation history and compare action volume with total funding over the selected period. The exact obligation total and action count support basic analysis of award size, activity level, and average action value within the same 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 = 'N0002412C2115'
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 | 2,164,176,170.00 | 2.16 billion | 799 |
Insight
For this award over the 5-year window, obligations are concentrated with the DEPT OF THE NAVY, which accounts for $2.16 billion across 799 awards. This indicates a high degree of customer concentration within a single agency rather than a broadly distributed obligation profile.
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 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 |
|---|---|---|---|---|
| ELECTRIC BOAT CORPORATION | 96169 | 2,164,176,170.00 | 2.16 billion | 799 |
Insight
Obligations for PIID N0002412C2115 over the 5-year window are fully concentrated with a single vendor, ELECTRIC BOAT CORPORATION (CAGE 96169). The vendor received $2.16 billion across 799 awards, indicating sustained and highly concentrated award activity with no other vendors represented in the provided rows. This concentration suggests the award has been managed as a long-term, single-vendor relationship rather than a distributed vendor base.
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 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 |
|---|---|---|---|---|
| 336611 | SHIP BUILDING AND REPAIRING | 2,164,176,170.00 | 2.16 billion | 799 |
Insight
For award N0002412C2115 over the 5-year window, obligations are fully concentrated in NAICS 336611, Ship Building and Repairing. This category accounts for $2.16 billion across 799 awards, indicating a highly focused procurement profile with no visible diversification across other NAICS codes in the provided data. The volume of awards suggests repeated activity within the same industrial base rather than a broad spread of contract types.
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 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 |
|---|---|---|---|---|
| 1905 | COMBAT SHIPS AND LANDING VESSELS | 2,164,176,170.00 | 2.16 billion | 799 |
Insight
Obligations for this award are fully concentrated in PSC 1905, Combat Ships and Landing Vessels, with $2.16 billion obligated across 799 actions. This indicates a highly focused procurement profile with no visible diversification across PSCs in the provided window. The volume of actions suggests repeated funding activity within the same category rather than a broad mix of requirement types.
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 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 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 for PIID N0002412C2115 increased from $222.11 million in 2021 to $365.79 million in 2023, then declined to $303.77 million in 2024 before rising sharply to $1.01 billion in 2025. Award counts also increased from 121 in 2021 to a peak of 205 in 2023, then fell to 179 in 2024 and 154 in 2025. The 2025 spike is concentrated in obligated dollars rather than award volume, indicating a materially higher average obligation per award in 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.