Award Number

Award Number 9700 / N0002412C2115 Federal Contract Action Summary (Last Year)

Procurement analysis for award number N0002412C2115 under Agency ID 9700, showing obligations and action activity for the last full year.

This page summarizes award number N0002412C2115 for the last full year, including total obligations and action count. The award shows 154 actions and 1.01 billion in total obligated value.

Generated at 03/20/2026

Analysis period: Last full year

Total obligated is shown as 1,010,445,246 and the average action value is 6,561,332.77.

Agency ID
9700
PIID
N0002412C2115
Type
Award
Total Obligated
1.01 billion
1,010,445,246.00
Actions
154
Average Action Value
6,561,332.77

Overview

Award number N0002412C2115 is associated with Agency ID 9700 and shows activity in the last full year. The reported total obligated amount is 1,010,445,246 across 154 award actions, with an average action value of 6,561,332.77.

How to use this page

Use this page to review award-level obligation totals and action frequency for the selected analysis window. The figures support basic trending, concentration checks, and comparison against other awards or agency records.

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 1 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,010,445,246.00 1.01 billion 154

Insight

Within the 1-year window for award PIID N0002412C2115, obligations are fully concentrated in a single top agency: the DEPT OF THE NAVY. This agency accounts for $1.01 billion across 154 awards, indicating a highly concentrated award distribution with no other agencies present in the provided rows.

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 1 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 1,010,445,246.00 1.01 billion 154

Insight

Obligations on PIID N0002412C2115 are fully concentrated with ELECTRIC BOAT CORPORATION (CAGE 96169), which accounts for the entire reported 1-year obligation total of $1.01 billion across 154 awards. This indicates a highly concentrated vendor distribution with no diversification among top vendors in the provided data. The award pattern suggests repeated obligations to a single incumbent rather than spread across multiple suppliers.

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 1 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 1,010,445,246.00 1.01 billion 154

Insight

Obligations for PIID N0002412C2115 are fully concentrated in NAICS 336611, Ship Building and Repairing, with $1.01 billion obligated across 154 awards in the 1-year window. This indicates a highly concentrated procurement profile with no diversification across other NAICS codes in the provided data. The concentration is consistent with a contract centered on shipbuilding and repair activities.

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 1 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,010,445,246.00 1.01 billion 154

Insight

Obligations under PIID N0002412C2115 are fully concentrated in PSC 1905, Combat Ships and Landing Vessels, with $1.01 billion obligated across 154 awards in the 1-year window. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The award pattern suggests repeated obligations within the same equipment category rather than a broad mix of goods or services.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 1,010,445,246.00 1.01 billion 154

Insight

In the 1-year window, all reported obligations for PIID N0002412C2115 are concentrated in FY2025, totaling $1.01 billion across 154 awards. This indicates a high level of annual concentration with no other fiscal years reflected in the provided period, so the observed activity is entirely attributable to 2025. The average obligation per award is approximately $6.6 million, suggesting a mix of award actions with substantial aggregate volume.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.