Award Number

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

Federal procurement profile for award number N0002418C2301 under agency ID 9700, showing obligation and action activity over the last 10 years.

This page summarizes award number N0002418C2301 for agency ID 9700 across the last 10 years. The record shows total obligated funding of $3.36 billion across 115 award actions, with an average action value of $29.20 million.

Generated at 03/20/2026

Analysis period: Last 10 years

Financial totals are based on the provided analysis window and reflect a total obligated exact amount of 3358164279.83.

Agency ID
9700
PIID
N0002418C2301
Type
Award
Total Obligated
3.36 billion
3,358,164,279.83
Actions
115
Average Action Value
29,201,428.52

Overview

Award number N0002418C2301 shows sustained procurement activity within agency ID 9700 during the last 10 years. The award has a total obligated amount of $3,358,164,279.83 across 115 actions, with an average action value of $29,201,428.52.

How to use this page

Use this page to review obligation volume and action frequency for award number N0002418C2301. The figures support a basic read of funding concentration and activity level without adding assumptions about scope, performance, or mission.

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 = 'N0002418C2301'
    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 3,358,164,279.83 3.36 billion 112
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 3

Insight

Obligations for PIID N0002418C2301 are highly concentrated in the Department of the Navy, which accounts for $3.36 billion across 112 awards over the 10-year window. The only other agency listed, DCMA, has three awards but no obligated dollars, indicating administrative involvement without recorded funding concentration. Overall, the award history is dominated by a single obligating agency with minimal distribution to other 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 = 'N0002418C2301'
        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
LOCKHEED MARTIN CORPORATION 38597 3,358,164,279.83 3.36 billion 115

Insight

Within the 10-year window, all obligated value in this award record is concentrated in a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 38597). The vendor accounts for $3.36 billion across 115 awards, indicating a high degree of spend concentration rather than a distributed vendor base. This pattern suggests sustained reliance on one prime vendor for this award action.

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 = 'N0002418C2301'
    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 3,358,164,279.83 3.36 billion 115

Insight

Obligations for award N0002418C2301 are fully concentrated in NAICS 336611, Ship Building and Repairing, with $3.36 billion obligated across 115 awards. This indicates a highly concentrated industrial profile with no observed diversification across other NAICS codes in the 10-year window. The award activity reflects sustained concentration in a single shipbuilding/repair classification rather than a broad procurement distribution.

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 = 'N0002418C2301'
    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 3,358,164,279.83 3.36 billion 115

Insight

Obligations for PIID N0002418C2301 are fully concentrated in PSC 1905, Combat Ships and Landing Vessels, with $3.36 billion obligated across 115 awards over the 10-year window. This indicates a highly focused procurement profile with no evidence of material distribution across other product or service categories in the provided data. The volume of awards alongside the obligation level suggests repeated funding activity within the same PSC 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 = 'N0002418C2301'
    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 590,158,663.00 590.16 million 6
2019 2,389,542,759.00 2.39 billion 9
2020 9,220,000.00 9.22 million 5
2021 14,027,950.00 14.03 million 24
2022 83,325,610.00 83.33 million 21
2023 111,709,735.00 111.71 million 20
2024 149,452,053.83 149.45 million 16
2025 10,727,509.00 10.73 million 14

Insight

Obligations for PIID N0002418C2301 are highly concentrated in 2018 and 2019, which together account for the overwhelming majority of the 10-year obligated value, including a peak of 2.39 billion in 2019. After 2019, annual obligations drop sharply and remain materially lower, ranging from 9.22 million in 2020 to 149.45 million in 2024, with 2025 at 10.73 million. Award counts increase materially from 2021 through 2024, suggesting more frequent activity in later years despite much lower annual dollar volume than the early period.

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.