Award Number

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

Federal procurement award page for award number N0002420C2300 under agency ID 9700, summarizing last full year obligations and action activity.

This page summarizes procurement activity for award number N0002420C2300 during the last full year. The award shows 16 actions and total obligated dollars of -1.07 billion.

Generated at 03/20/2026

Analysis period: Last full year

Financial figures are presented as reported, including the exact total obligated value of -1074928006 and an average action value of -67183000.38.

Agency ID
9700
PIID
N0002420C2300
Type
Award
Total Obligated
-1.07 billion
-1,074,928,006.00
Actions
16
Average Action Value
-67,183,000.38

Overview

In the last full year, award N0002420C2300 under agency ID 9700 recorded 16 award actions. The total obligated amount was -1,074,928,006, with an average action value of -67,183,000.38. This page focuses on the award-level procurement record rather than broader agency totals.

How to use this page

Use this page to review the award’s action count and obligated value over the analysis window. It is suited for identifying the scale and direction of reported obligations tied to award number N0002420C2300.

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 = 'N0002420C2300'
    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,074,928,006.00 -1.07 billion 16

Insight

Obligations in the 1-year window are concentrated in a single agency, DEPT OF THE NAVY, which accounts for all reported activity for this award. The reported total obligated amount is negative at -$1.07 billion across 16 awards, indicating a net deobligation or other downward adjustment rather than new funding. This concentration suggests the award’s recent financial activity is entirely driven by Navy transactions.

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 = 'N0002420C2300'
        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
MARINETTE MARINE CORPORATION 98042 -1,074,928,006.00 -1.07 billion 16

Insight

Obligations for PIID N0002420C2300 in the 1-year window are fully concentrated with a single vendor, MARINETTE MARINE CORPORATION (CAGE 98042). Across 16 awards, the vendor accounts for -$1.07 billion in total obligated amount, indicating that this award is the sole material driver of obligation activity in the period.

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 = 'N0002420C2300'
    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,074,928,006.00 -1.07 billion 16

Insight

Obligations for PIID N0002420C2300 are entirely concentrated in NAICS 336611, Ship Building and Repairing, over the 1-year window. This NAICS accounts for 16 awards and a net obligated amount of -$1.07 billion, indicating the activity is both highly concentrated and heavily deobligated in this line of business. No other NAICS codes are present in the provided data, so there is no observable distribution across additional industrial categories.

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 = 'N0002420C2300'
    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,074,928,006.00 -1.07 billion 16

Insight

Over the 1-year window, obligations for award N0002420C2300 are concentrated entirely in PSC 1905, Combat Ships and Landing Vessels. This PSC accounts for the full reported total, with 16 awards and -$1.07 billion in obligated value, indicating a highly focused and materially negative obligation pattern within this award record.

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 = 'N0002420C2300'
    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,074,928,006.00 -1.07 billion 16

Insight

For PIID N0002420C2300 over the 1-year window, the annual trend is concentrated entirely in 2025, with 16 awards totaling -$1.07 billion in obligated dollars. This indicates all observed activity in the period is concentrated in a single year rather than distributed across multiple years, limiting year-over-year trend comparison. The negative obligated total should be reviewed in context as it may reflect deobligations or other downward adjustments within the award record.

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.