Award Number

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

Federal award record for award number N0002419C2235 under agency ID 9700, showing obligated activity over the last 10 years.

This page summarizes procurement activity for award number N0002419C2235. Over the last 10 years, the award totals $1.87 billion in obligated value across 168 actions.

Generated at 03/20/2026

Analysis period: Last 10 years

All values reflect the provided analysis window and may differ from future updates or source-system revisions.

Agency ID
9700
PIID
N0002419C2235
Type
Award
Total Obligated
1.87 billion
1,868,085,652.07
Actions
168
Average Action Value
11,119,557.45

Overview

The award record for N0002419C2235 shows 168 actions within the last 10 years, with total obligated value of $1,868,085,652.07. The average action value is $11,119,557.45, indicating substantial dollar movement across the action history. This summary is based on the supplied award-level data for agency ID 9700.

How to use this page

Use this page to review the award’s obligation history at a glance and to compare action volume with total funded value. The figures support basic procurement analysis, including activity intensity and average action size over the selected period.

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 = 'N0002419C2235'
    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 1,868,085,652.07 1.87 billion 168

Insight

Obligations for PIID N0002419C2235 are fully concentrated in the DEPT OF THE NAVY, which accounts for $1.87 billion across 168 awards over the 10-year window. No other agency appears in the provided rows, indicating the award activity is entirely concentrated within a single agency relationship. This concentration suggests the procurement is not distributed across multiple agencies in the available data.

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 = 'N0002419C2235'
        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
NATIONAL STEEL AND SHIPBUILDING COMPANY 81220 1,868,085,652.07 1.87 billion 168

Insight

Obligations for PIID N0002419C2235 are fully concentrated with a single vendor, NATIONAL STEEL AND SHIPBUILDING COMPANY (CAGE 81220), which accounts for the entire reported 10-year total. Across 168 awards, this vendor received $1.87 billion in obligated funding, indicating sustained, high-volume award activity with no visible distribution to other vendors in the provided data.

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 = 'N0002419C2235'
    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 1,868,085,652.07 1.87 billion 168

Insight

Obligations for PIID N0002419C2235 are entirely concentrated in NAICS 336611, Ship Building and Repairing, with $1.87 billion obligated across 168 awards over the 10-year window. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The award activity is concentrated in a single shipbuilding-related industrial base, consistent with a specialized contracting pattern.

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 = 'N0002419C2235'
    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 1,868,085,652.07 1.87 billion 168

Insight

For award PIID N0002419C2235 over the 10-year window, obligations are concentrated in PSC 1905, Combat Ships and Landing Vessels, at $1.87 billion across 168 awards. This indicates a strong concentration in a single product service category rather than a broad distribution across PSCs. The award history reflected here is heavily weighted toward ship-related acquisitions.

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 = 'N0002419C2235'
    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
2018 65,826,713.00 65.83 million 1
2019 1,004,317,973.00 1.00 billion 5
2020 38,037,309.00 38.04 million 16
2021 28,764,991.00 28.76 million 17
2022 641,621,309.00 641.62 million 34
2023 25,047,593.07 25.05 million 44
2024 49,024,658.00 49.02 million 30
2025 15,445,106.00 15.45 million 21

Insight

Obligations for PIID N0002419C2235 are highly concentrated in 2019 and 2022, which account for the clear high points in the 10-year window at $1.00 billion and $641.62 million, respectively. Activity then falls sharply in 2020 and 2021 to under $40 million annually, before rebounding in 2023-2024 to a more moderate range of $25.05 million to $49.02 million. Award counts increase markedly after 2019, peaking at 44 in 2023, indicating broader distribution of smaller obligations in later years rather than the large-dollar concentration seen earlier.

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.