Award Number

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

Award number N0002423C2307 for agency 9700 shows 95 recorded actions in the last full year, with total obligations of 2.47 billion.

This award page summarizes FPDS activity for award number N0002423C2307 under agency ID 9700. In the last full year, the award had 95 actions and total obligated dollars of 2,468,172,700.83.

Generated at 03/20/2026

Analysis period: Last full year

Values reflect the selected analysis window and may differ from other reporting periods or rollups.

Agency ID
9700
PIID
N0002423C2307
Type
Award
Total Obligated
2.47 billion
2,468,172,700.83
Actions
95
Average Action Value
25,980,765.27

Overview

Award number N0002423C2307 is associated with agency ID 9700 in the selected FPDS analysis window. The last full year shows 95 award actions and total obligated dollars of 2,468,172,700.83, with an average action value of 25,980,765.27. These figures describe recorded obligation activity for the award number during the period.

How to use this page

Use this page to review the award-level obligation pattern for N0002423C2307 over the last full year. The action count and average action value provide a basic view of how activity was distributed across the period. For broader context, compare this award with other awards in agency 9700 or with different reporting windows.

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 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 2,468,172,700.83 2.47 billion 95

Insight

Within the 1-year window for award PIID N0002423C2307 under agency ID 9700, obligations are concentrated in a single reporting agency. The DEPT OF THE NAVY accounts for $2.47 billion across 95 awards, indicating that this activity is heavily concentrated within Navy-related obligations rather than broadly distributed across 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 = '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 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
HUNTINGTON INGALLS INCORPORATED 34293 2,468,172,700.83 2.47 billion 95

Insight

Obligations for this award are fully concentrated with HUNTINGTON INGALLS INCORPORATED (CAGE 34293), which received $2.47 billion across 95 awards in the 1-year window. This indicates a high degree of vendor concentration with no other vendors represented in the provided data. The distribution suggests the award activity is dominated by a single contractor relationship.

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 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 2,468,172,700.83 2.47 billion 95

Insight

Over the past 1 year, obligations for PIID N0002423C2307 are fully concentrated in NAICS 336611, Ship Building and Repairing. The award recorded 95 actions and $2.47 billion in total obligated amount in this single NAICS category, indicating a highly concentrated obligation profile with no diversification across other industries in the provided data.

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 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 2,468,172,700.83 2.47 billion 95

Insight

Over the past year, obligations under PIID N0002423C2307 are fully concentrated in PSC 1905, Combat Ships and Landing Vessels. The award account reflects 95 actions totaling $2.47 billion, indicating a highly focused procurement profile with no visible PSC diversification in the provided data. This concentration suggests the award is dominated by a single product category rather than a mixed spend pattern.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 2,468,172,700.83 2.47 billion 95

Insight

In FY2025, award PIID N0002423C2307 obligated $2.47 billion across 95 awards, indicating substantial funding concentration within the one-year window. The obligation volume is fully concentrated in a single year in the provided data, with no multi-year distribution visible for comparison. This limits trend assessment, but the observed activity suggests a high-dollar, active award profile in FY2025.

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.