Award Number

Award Number 9700 / N0002413C5116 Federal Contract Action Summary (Last 5 Years)

Federal award record for award number N0002413C5116 under agency ID 9700, showing obligations and action history over the last 5 years.

This page summarizes the award activity tied to award number N0002413C5116 for agency ID 9700 during the last 5 years. The record shows 92 award actions and total obligations of 612,525,031.32.

Generated at 03/20/2026

Analysis period: Last 5 years

Obligation totals are shown as provided for the last 5 years, with a readable total of 612.53 million and an average action value of 6,657,880.78.

Agency ID
9700
PIID
N0002413C5116
Type
Award
Total Obligated
612.53 million
612,525,031.32
Actions
92
Average Action Value
6,657,880.78

Overview

The award record for N0002413C5116 shows 92 actions within the last 5 years, with total obligated dollars of 612,525,031.32. The average action value across that period is 6,657,880.78, which provides a simple measure of transaction scale within the record. These figures are presented for the award associated with agency ID 9700.

How to use this page

Use this page to review the obligation profile and action count for award N0002413C5116 over the selected analysis window. It is useful for quick inspection of total dollars, average action size, and the number of award actions tied to the record.

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 = 'N0002413C5116'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 612,525,031.32 612.53 million 91
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Award activity for PIID N0002413C5116 is highly concentrated within the DEPT OF THE NAVY, which accounts for $612.53 million across 91 awards in the 5-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears only once and is associated with no obligated value. Overall, the award profile is overwhelmingly Navy-centric, with negligible obligation distribution to other agencies in the provided 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 = 'N0002413C5116'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 02769 612,525,031.32 612.53 million 92

Insight

Over the 5-year window, obligations for award N0002413C5116 are fully concentrated with a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 02769). The award reflects 92 recorded actions with total obligated funding of $612.53 million, indicating sustained funding and no vendor diversification within 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 = 'N0002413C5116'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 612,525,031.32 612.53 million 92

Insight

Obligations for PIID N0002413C5116 are fully concentrated in NAICS 334511, with $612.53 million obligated across 92 awards in the 5-year window. This indicates a highly focused procurement profile in search, detection, navigation, guidance, aeronautical, and nautical systems and instrument manufacturing. No other NAICS codes are present in the provided data, so there is no observable diversification across industry sectors.

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 = 'N0002413C5116'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
5840 RADAR EQUIPMENT, EXCEPT AIRBORNE 612,525,031.32 612.53 million 92

Insight

Over the 5-year window, obligations for award N0002413C5116 are concentrated entirely in PSC 5840, Radar Equipment, Except Airborne, totaling $612.53 million across 92 awards. This indicates a highly focused procurement profile centered on a single product category rather than a broad distribution of PSC activity. The volume of awards suggests repeated funding activity within the same PSC over time.

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 = 'N0002413C5116'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2021 257,678,929.18 257.68 million 24
2022 225,401,538.69 225.40 million 18
2023 84,650,202.77 84.65 million 21
2024 30,536,971.80 30.54 million 20
2025 14,257,388.88 14.26 million 9

Insight

Obligations on PIID N0002413C5116 declined sharply over the 5-year window, falling from $257.68 million in 2021 to $14.26 million in 2025. Award counts also decreased overall from 24 in 2021 to 9 in 2025, with a brief increase in 2023–2024 that did not reverse the downward funding trend. The pattern indicates a high concentration of obligation value in the earlier years, followed by materially lower annual activity in the most recent periods.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.