Award Number

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

FPDS award page for award number N0002418C2300 under agency ID 9700, summarizing last full year obligation and action activity.

This page summarizes the federal award identified by PIID N0002418C2300 for agency ID 9700 over the last full year. The award shows total obligated spending of 64.38 million across 27 actions.

Generated at 03/20/2026

Analysis period: Last full year

Figures reflect the provided analysis window and totals; exact obligated value is 64,380,358 with an average action value of 2,384,457.7.

Agency ID
9700
PIID
N0002418C2300
Type
Award
Total Obligated
64.38 million
64,380,358.00
Actions
27
Average Action Value
2,384,457.70

Overview

The award record for PIID N0002418C2300 shows 64,380,358 in total obligations during the last full year. Across 27 award actions, the average action value was 2,384,457.7, indicating repeated recorded activity within the analysis window.

How to use this page

Use this page to review award-level obligation totals and action volume for agency ID 9700. The figures support basic FPDS review of spending concentration and activity count for the selected award number.

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 = 'N0002418C2300'
    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 64,380,358.00 64.38 million 27

Insight

All reported obligation for PIID N0002418C2300 over the past year is concentrated under the DEPT OF THE NAVY (agency ID 1700), with 64.38 million across 27 awards. This indicates the award activity in the review window is fully attributable to a single top agency, with no other agencies represented in the provided rows. The distribution suggests a narrow funding footprint rather than a diversified cross-agency obligation pattern.

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 = 'N0002418C2300'
        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
LOCKHEED MARTIN CORPORATION 38597 64,380,358.00 64.38 million 27

Insight

In the 1-year window for PIID N0002418C2300, obligations are fully concentrated with LOCKHEED MARTIN CORPORATION (CAGE 38597), which accounts for $64.38 million across 27 awards. This indicates a highly concentrated vendor profile for this award, with all observed obligated value tied to a single contractor. The frequency of awards suggests repeated funding actions to the same vendor rather than a broadly distributed obligation pattern.

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 = 'N0002418C2300'
    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 64,380,358.00 64.38 million 27

Insight

Obligations for PIID N0002418C2300 in the 1-year window are fully concentrated in NAICS 336611, Ship Building and Repairing. The award reflects 27 obligations totaling $64.38 million, indicating a single-industry concentration rather than a distributed NAICS mix. This pattern suggests the award activity is tightly aligned to shipbuilding and repair requirements with no diversification across other NAICS codes 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 = 'N0002418C2300'
    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 64,380,358.00 64.38 million 27

Insight

Over the 1-year window, obligations for award N0002418C2300 are fully concentrated in PSC 1905, Combat Ships and Landing Vessels. This PSC accounts for $64.38 million across 27 awards, indicating a consistent spend pattern within a single product/service category rather than a distributed obligation profile. The concentration suggests the award activity is narrowly focused on naval vessel-related requirements.

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 = 'N0002418C2300'
    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 64,380,358.00 64.38 million 27

Insight

In the 1-year window, award 9700 / N0002418C2300 records $64.38 million in obligated value across 27 awards in FY 2025. The obligated amount is concentrated in a single reported year, indicating that recent activity is fully captured in the current period rather than distributed across multiple years. This pattern suggests a relatively focused award profile over the stated window.

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.