Award Number

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

Award number N0001923C0003 for agency ID 9700 shows 17 award actions over the last 5 years with $24.50 billion obligated.

This page summarizes procurement activity for award N0001923C0003 under agency ID 9700 during the last 5 years. The award has 17 actions and $24,499,534,829 in total obligated funding.

Generated at 03/20/2026

Analysis period: Last 5 years

Dollar figures reflect the provided total obligated amount of $24.50 billion and the exact value of $24,499,534,829.

Agency ID
9700
PIID
N0001923C0003
Type
Award
Total Obligated
24.50 billion
24,499,534,829.00
Actions
17
Average Action Value
1,441,149,107.59

Overview

Award N0001923C0003 recorded 17 award actions in the last 5 years. Total obligated funding for the award is $24,499,534,829, with an average action value of $1,441,149,107.59. These figures provide a concise view of the award's funding and action history in the analysis window.

How to use this page

Use this page to review the award-level obligation total and action count for N0001923C0003. The data can support procurement analysis, trend review, and cross-checking of award activity for agency ID 9700.

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 = 'N0001923C0003'
    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 24,499,534,829.00 24.50 billion 17

Insight

Over the 5-year window, awards linked to PIID N0001923C0003 are fully concentrated in one top agency: DEPT OF THE NAVY (agency ID 1700). This agency accounts for $24.50 billion in obligated value across 17 awards, indicating a highly concentrated award distribution rather than a broad multi-agency spread.

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 = 'N0001923C0003'
        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 24,499,534,829.00 24.50 billion 17

Insight

LOCKHEED MARTIN CORPORATION accounts for all reported obligations in this 5-year view for award N0001923C0003 under agency 9700, with $24.50 billion obligated across 17 awards. This indicates a highly concentrated vendor profile with no other vendors appearing in the provided results. The award relationship is therefore dominated by a single contractor over the period analyzed.

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 = 'N0001923C0003'
    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 24,499,534,829.00 24.50 billion 17

Insight

Over the 5-year window, obligations for award N0001923C0003 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $24.50 billion obligated across 17 awards. This indicates a highly focused procurement profile with no observable diversification across other NAICS codes in the provided data. The concentration suggests this award is tied primarily to aircraft manufacturing activities rather than a broad mix of industry categories.

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 = 'N0001923C0003'
    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 24,499,534,829.00 24.50 billion 17

Insight

Obligations under PIID N0001923C0003 are fully concentrated in PSC 1510, Aircraft, Fixed Wing. Over the 5-year window, 17 awards account for $24.50 billion in total obligated value, indicating a highly focused procurement profile with no observable PSC diversification in the provided data. This concentration suggests the award activity is dominated by a single product class rather than being distributed across multiple PSCs.

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 = 'N0001923C0003'
    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
2022 1,051,400,000.00 1.05 billion 1
2023 1,611,222,370.00 1.61 billion 5
2024 7,660,236,046.00 7.66 billion 6
2025 14,176,676,413.00 14.18 billion 5

Insight

Obligations under PIID N0001923C0003 increased sharply over the period, rising from 1.05 billion in 2022 to 14.18 billion in 2025. Activity is highly concentrated in the later years: 2024 and 2025 account for the overwhelming share of obligated dollars, with 2025 alone representing the peak annual value. Award counts remained low relative to dollars, ranging from 1 to 6 per year, indicating substantial funding concentration across a small number of 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.