Award Number

Award Number 9700 / N0002423C2307 Federal Contract Action Summary (Last 10 Years)

FPDS award overview for award number N0002423C2307 under agency ID 9700, showing 161 actions and $6.95 billion obligated over the last 10 years.

This page summarizes federal procurement activity for award number N0002423C2307 within agency ID 9700 over the last 10 years. The record shows 161 award actions and total obligated funding of $6,947,585,647.83.

Generated at 03/20/2026

Analysis period: Last 10 years

Dollar values are shown as recorded in the underlying award data; the readable amount is rounded to 6.95 billion.

Agency ID
9700
PIID
N0002423C2307
Type
Award
Total Obligated
6.95 billion
6,947,585,647.83
Actions
161
Average Action Value
43,152,705.89

Overview

The award record for N0002423C2307 in agency ID 9700 reflects a total obligated amount of $6,947,585,647.83 across 161 actions in the last 10 years. The average action value is $43,152,705.89, indicating repeated activity at a substantial obligated level.

How to use this page

Use this page to review the scale and cadence of obligations associated with award number N0002423C2307. The action count, average action value, and total obligated amount provide a compact view of procurement activity for the selected 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 = 'N0002423C2307'
    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 6,947,585,647.83 6.95 billion 161

Insight

Over the 10-year window, obligated funding for PIID N0002423C2307 is fully concentrated in a single agency: the Department of the Navy. The Navy accounts for $6.95 billion across 161 awards, indicating all observed obligation activity is concentrated within one agency rather than distributed across multiple agencies. This level of concentration suggests the award record is tightly tied to a single departmental mission and procurement stream.

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 = 'N0002423C2307'
        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
HUNTINGTON INGALLS INCORPORATED 34293 6,947,585,647.83 6.95 billion 161

Insight

Obligations for PIID N0002423C2307 are fully concentrated with a single vendor, HUNTINGTON INGALLS INCORPORATED (CAGE 34293), which accounts for $6.95 billion across 161 awards over the 10-year window. This indicates a highly concentrated award distribution with no visible vendor diversification in the provided results.

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 = 'N0002423C2307'
    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 6,947,585,647.83 6.95 billion 161

Insight

Obligations for PIID N0002423C2307 over the 10-year window are fully concentrated in NAICS 336611, Ship Building and Repairing. This NAICS accounts for $6.95 billion across 161 awards, indicating a highly concentrated award profile with no diversification across other NAICS codes in the provided data. The distribution suggests the requirement is consistently tied to 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 = 'N0002423C2307'
    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 6,947,585,647.83 6.95 billion 161

Insight

Over the 10-year window, obligations for this award are fully concentrated in PSC 1905, Combat Ships and Landing Vessels, totaling $6.95 billion across 161 awards. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The volume of awards, paired with the large obligated amount, suggests sustained activity within this product/service 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 = 'N0002423C2307'
    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
2023 3,089,095,896.00 3.09 billion 9
2024 1,390,317,051.00 1.39 billion 57
2025 2,468,172,700.83 2.47 billion 95

Insight

Obligations for PIID N0002423C2307 are concentrated in three consecutive fiscal years, with the highest amount in 2023 at $3.09 billion across 9 awards. Funding declined to $1.39 billion in 2024 while award count increased to 57, then rebounded to $2.47 billion in 2025 alongside 95 awards. The pattern indicates a shift from fewer, larger obligations in 2023 toward a higher volume of smaller awards in 2024 and 2025.

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.