Award Number

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

Award number N0001914C0002 for agency 9700 reflects a 10-year federal procurement record with 209 actions and $5.02 billion in total obligations.

This award page summarizes the procurement activity tied to award number N0001914C0002 over the last 10 years. The record shows 209 award actions and $5,021,068,303.93 in total obligated value.

Generated at 03/20/2026

Analysis period: Last 10 years

Dollar figures are shown as reported and may differ from rounded readable totals due to precision.

Agency ID
9700
PIID
N0001914C0002
Type
Award
Total Obligated
5.02 billion
5,021,068,303.93
Actions
209
Average Action Value
24,024,250.26

Overview

The award number N0001914C0002 is associated with agency 9700 and shows sustained procurement activity across the last 10 years. Its total obligated amount is $5,021,068,303.93, with an average action value of $24,024,250.26 across 209 actions.

How to use this page

Use this page to review the award-level obligation history and compare the scale of activity over time. The action count and average action value provide a concise basis for tracking how funding has been distributed across the award 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 = 'N0001914C0002'
    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 5,036,545,812.92 5.04 billion 172
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -15,477,508.99 -15.48 million 37

Insight

Obligations on this award are heavily concentrated within the DEPT OF THE NAVY, which accounts for $5.04 billion across 172 actions. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) shows a much smaller footprint by comparison, with -$15.48 million across 37 actions, indicating a limited offsetting or deobligation activity. Overall, the award’s funding history is dominated by Navy obligations, with DCMA representing a minor negative adjustment over the 10-year window.

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 = 'N0001914C0002'
        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 4,828,136,920.44 4.83 billion 36
LOCKHEED MARTIN CORPORATION 81755 192,931,383.49 192.93 million 173

Insight

Vendor obligations are highly concentrated in LOCKHEED MARTIN CORPORATION, which accounts for 4.83 billion across 36 awards. A second LOCKHEED MARTIN CORPORATION record, identified with CAGE code 81755, adds 192.93 million across 173 awards, indicating a larger volume of smaller awards alongside the dominant high-dollar award set. Overall, the award portfolio for this PIID is heavily concentrated in a single vendor name over the 10-year window.

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 = 'N0001914C0002'
    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
336411 AIRCRAFT MANUFACTURING 5,021,068,303.93 5.02 billion 209

Insight

Within the 10-year window, obligations for award N0001914C0002 are fully concentrated in NAICS 336411, Aircraft Manufacturing. This category accounts for $5.02 billion across 209 awards, indicating a highly focused procurement pattern 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 = 'N0001914C0002'
    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
1510 AIRCRAFT, FIXED WING 5,021,068,303.93 5.02 billion 209

Insight

Obligations for this award are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $5.02 billion obligated across 209 awards. This indicates a highly focused procurement profile with no observable distribution across other PSCs in the provided data. The concentration suggests this award is materially tied to fixed-wing aircraft acquisition or related activity over the 10-year window.

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 = 'N0001914C0002'
    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 4,824,532,295.44 4.82 billion 33
2017 235,296,663.00 235.30 million 72
2018 13,063,961.00 13.06 million 37
2019 -11,453,087.77 -11.45 million 22
2020 134,429.00 134.43 thousand 21
2021 9,670,497.00 9.67 million 9
2022 -28,949,428.50 -28.95 million 5
2023 -20,868,356.22 -20.87 million 6
2024 0.00 0.00 2
2025 -358,669.02 -358.67 thousand 2

Insight

Obligations for PIID N0001914C0002 are heavily concentrated in 2016, which accounts for $4.82 billion and 33 awards, far exceeding every later year. After 2016, obligated amounts fall sharply to a much lower, irregular pattern, with mostly small annual totals and several negative values in 2019, 2022, 2023, and 2025, indicating downward adjustments or deobligations. Award counts also decline over time from a peak of 72 in 2017 to 2 or fewer in 2024 and 2025, suggesting markedly reduced activity in the later years.

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.