Award Number

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

Award number N0002413C5116 for agency 9700 shows 173 actions over the last 10 years with $1.71 billion obligated.

This page summarizes award number N0002413C5116 under agency ID 9700 for the last 10 years. The award reflects 173 recorded actions and total obligated amounts of $1,710,949,321.28, with an average action value of $9,889,880.47.

Generated at 03/20/2026

Analysis period: Last 10 years

Amounts are shown using the provided readable and exact obligated totals for the selected 10-year window.

Agency ID
9700
PIID
N0002413C5116
Type
Award
Total Obligated
1.71 billion
1,710,949,321.28
Actions
173
Average Action Value
9,889,880.47

Overview

Award number N0002413C5116 is the procurement identifier shown for agency 9700 in the last 10 years. The record includes 173 actions and total obligated funding of $1,710,949,321.28, which is presented here as $1.71 billion. The average value per action is $9,889,880.47.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for the selected period. The figures support a quick summary of activity under PIID N0002413C5116 without needing to inspect each action separately.

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 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,710,949,321.28 1.71 billion 172
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Obligations are highly concentrated in the Department of the Navy, which accounts for $1.71 billion across 172 awards in the 10-year window. The Defense Contract Management Agency appears only once and shows no obligated amount, indicating minimal financial activity outside the Navy for this PIID. This distribution suggests the award’s funding and administrative footprint is overwhelmingly Navy-led, with DCMA present only at a nominal level.

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 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 02769 1,575,228,535.90 1.58 billion 164
LOCKHEED MARTIN CORPORATION 135,720,785.38 135.72 million 9

Insight

Award obligations are highly concentrated with LOCKHEED MARTIN CORPORATION. The CAGE-coded record (02769) accounts for $1.58 billion across 164 awards, while the non-CAGE entry for the same vendor name adds another $135.72 million across 9 awards. Together, these rows indicate that nearly all visible activity is tied to a single vendor, with the CAGE-coded record representing the dominant share of obligations and transactions.

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 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
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 1,710,949,321.28 1.71 billion 173

Insight

Obligations under PIID N0002413C5116 are fully concentrated in NAICS 334511, with 100% of the recorded 10-year obligated value assigned to Search, Detection, Navigation, Guidance, Aeronautical, and Nautical System and Instrument Manufacturing. This NAICS accounts for 173 awards and $1.71 billion in obligated value, indicating a sustained and highly concentrated procurement profile within a single industrial classification.

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 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
5840 RADAR EQUIPMENT, EXCEPT AIRBORNE 1,710,949,321.28 1.71 billion 173

Insight

Obligations for this award are fully concentrated in PSC 5840, Radar Equipment, Except Airborne, totaling $1.71 billion across 173 awards over the 10-year window. The volume of awards indicates repeated procurement activity within a single product category rather than a broad mix of PSCs. This pattern suggests a sustained reliance on radar equipment acquisitions under this PIID.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2016 133,023,339.91 133.02 million 8
2017 166,738,095.08 166.74 million 20
2018 250,993,148.67 250.99 million 18
2019 210,182,696.89 210.18 million 16
2020 337,487,009.41 337.49 million 19
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 for PIID N0002413C5116 were concentrated in the middle of the 10-year window, peaking at $337.49 million in 2020 and remaining elevated through 2022 before declining sharply in 2023–2025. Award volume was relatively steady from 2017 through 2024, ranging from 16 to 24 awards annually, indicating that the decline in obligated dollars was driven more by smaller funding levels than by a collapse in award activity. The 2025 data are partial within the queried period and show further reduction to $14.26 million across 9 awards.

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.