Award Number

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

Procurement summary for award number N0001921C0020 under agency ID 9700, showing obligation and action activity over the last 5 years.

This page summarizes award-level procurement activity for PIID N0001921C0020 during the last 5 years. The award shows 108 actions and total obligated funding of 7.64 billion dollars, with an average action value of 70,753,639.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the provided analysis window and readable and exact obligated values for this award record.

Agency ID
9700
PIID
N0001921C0020
Type
Award
Total Obligated
7.64 billion
7,641,393,011.50
Actions
108
Average Action Value
70,753,639.00

Overview

The award record for PIID N0001921C0020 shows 108 reported actions in the last 5 years. Total obligated funding is 7,641,393,011.5, which reads as 7.64 billion dollars, and the average action value is 70,753,639.

How to use this page

Use this page to review the award’s obligation volume and action frequency over the selected period. The figures provide a compact view of activity for agency ID 9700 without adding assumptions about scope, performance, or contract type.

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 = 'N0001921C0020'
    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 7,641,393,011.50 7.64 billion 104
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 4

Insight

Obligations for PIID N0001921C0020 are highly concentrated in the DEPT OF THE NAVY, which accounts for $7.64 billion across 104 awards in the 5-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears with 4 awards but no obligated value, indicating administrative or oversight activity rather than funded obligations. Overall, the award activity is overwhelmingly Navy-centric, with no meaningful obligated-value distribution to other listed 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 = 'N0001921C0020'
        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 81755 7,641,393,011.50 7.64 billion 108

Insight

Within the 5-year window for award PIID N0001921C0020, obligations are fully concentrated with a single vendor, Lockheed Martin Corporation (CAGE 81755). That vendor accounts for $7.64 billion across 108 awards, indicating a highly concentrated obligation pattern with no other vendors reflected in this section. This level of concentration suggests the award activity is dominated by one incumbent contractor relationship.

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 = 'N0001921C0020'
    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
336411 AIRCRAFT MANUFACTURING 7,641,393,011.50 7.64 billion 108

Insight

Obligations are fully concentrated in NAICS 336411, Aircraft Manufacturing, which accounts for the entire 5-year obligation base for this award. The award spans 108 actions totaling $7.64 billion, indicating sustained activity within a single industry classification rather than a diversified NAICS mix. This concentration suggests the award is tightly aligned to aircraft manufacturing requirements over the review period.

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 = 'N0001921C0020'
    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
1510 AIRCRAFT, FIXED WING 7,641,393,011.50 7.64 billion 108

Insight

Obligations for this award are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $7.64 billion obligated across 108 actions in the 5-year window. This indicates a highly focused procurement profile tied to a single product service category rather than a diversified mix of goods or services. The volume of actions suggests repeated award activity within the same PSC, but no additional PSCs are present to indicate broader distribution.

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 = 'N0001921C0020'
    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 2,303,745,655.00 2.30 billion 29
2022 2,705,593,334.50 2.71 billion 36
2023 2,019,815,529.00 2.02 billion 31
2024 612,099,419.00 612.10 million 8
2025 139,074.00 139.07 thousand 4

Insight

Obligations under PIID N0001921C0020 were concentrated in 2021–2023, with annual totals of 2.30 billion, 2.71 billion, and 2.02 billion across 29, 36, and 31 awards, respectively. Activity then declined sharply in 2024 to 612.10 million across 8 awards, followed by a minimal 2025 level of 139.07 thousand across 4 awards. The pattern indicates a pronounced reduction in both obligation volume and award count after 2023, suggesting the award is in a late-stage or near-closedout funding profile.

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.