Award Number

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

Award number N0001924C0039 for agency ID 9700 records 29 actions and $6.18 billion obligated over the last 5 years.

This award page summarizes procurement activity tied to award number N0001924C0039 under agency ID 9700. Over the last 5 years, it shows 29 award actions with total obligated funding of $6,179,610,861.

Generated at 03/20/2026

Analysis period: Last 5 years

Dollar values are shown as provided for the 5-year analysis window, with an average action value of $213,090,029.69.

Agency ID
9700
PIID
N0001924C0039
Type
Award
Total Obligated
6.18 billion
6,179,610,861.00
Actions
29
Average Action Value
213,090,029.69

Overview

This page covers award number N0001924C0039 for agency ID 9700 across the last 5 years. The record includes 29 actions and total obligated funding of $6,179,610,861, with an average action value of $213,090,029.69.

How to use this page

Use this page to review how obligation activity is distributed across the award over the selected period. The action count and obligated totals provide a concise view of procurement volume for this award number.

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 = 'N0001924C0039'
    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 6,179,610,861.00 6.18 billion 29

Insight

Over the 5-year window, obligations for award PIID N0001924C0039 are fully concentrated in a single agency, DEPT OF THE NAVY (agency_id 1700). The Navy accounts for $6.18 billion across 29 awards, indicating a highly concentrated funding pattern with no distribution across other agencies in the provided data. This suggests the award activity is sustained and narrowly scoped to one agency rather than spread across multiple customers.

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 = 'N0001924C0039'
        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 6,179,610,861.00 6.18 billion 29

Insight

LOCKHEED MARTIN CORPORATION is the only listed vendor for PIID N0001924C0039 in the 5-year window, accounting for all observed obligations in this section. The vendor received 29 awards totaling $6.18 billion, indicating complete concentration of obligated value with a single contractor. This level of concentration suggests a highly focused award distribution with no diversification across vendors in 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 = 'N0001924C0039'
    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 6,179,610,861.00 6.18 billion 29

Insight

Over the 5-year window, obligations for award PIID N0001924C0039 under agency 9700 are fully concentrated in NAICS 336411, Aircraft Manufacturing. This NAICS accounts for 6.18 billion across 29 awards, indicating a high degree of category focus rather than a distributed obligation profile.

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 = 'N0001924C0039'
    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 6,179,610,861.00 6.18 billion 29

Insight

Obligations for PIID N0001924C0039 over the 5-year window are fully concentrated in PSC 1510, Aircraft, Fixed Wing. The award records 29 actions totaling $6.18 billion, indicating a highly focused procurement profile with no other PSCs represented in the provided rows. This concentration suggests the award is tied to a single primary product category rather than a diversified mix of supplies or services.

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 = 'N0001924C0039'
    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
2024 2,461,055,343.00 2.46 billion 8
2025 3,718,555,518.00 3.72 billion 21

Insight

Obligations for PIID N0001924C0039 increased from $2.46 billion in 2024 to $3.72 billion in 2025, an increase of about 51 percent. Award activity also became more concentrated in 2025, with 21 awards compared to 8 in 2024, indicating both higher volume and higher total obligated value in the most recent year.

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.