Award Number

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

Award number N0001924C0039 for agency 9700 summarizes obligations and action activity over the last full year.

This page presents the federal procurement record for award number N0001924C0039 under agency ID 9700. The last full year shows 21 award actions and total obligations of 3.72 billion.

Generated at 03/20/2026

Analysis period: Last full year

Amounts are shown using the provided readable total and exact obligated value for the last full year analysis window.

Agency ID
9700
PIID
N0001924C0039
Type
Award
Total Obligated
3.72 billion
3,718,555,518.00
Actions
21
Average Action Value
177,074,072.29

Overview

The award record for N0001924C0039 shows 3,718,555,518 in total obligations across 21 actions during the last full year. The average action value was 177,074,072.29, indicating a high-value award with multiple recorded actions in the period.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for the selected analysis window. It is useful for procurement analysis, award comparison, and tracking activity tied to 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 = 'N0001924C0039'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 3,718,555,518.00 3.72 billion 21

Insight

In the 1-year window for award PIID N0001924C0039, obligations are fully concentrated in the DEPT OF THE NAVY. The Navy accounts for $3.72 billion across 21 awards, indicating all recorded obligated value in this view is concentrated within a single agency. This reflects a highly concentrated obligation profile with no other agencies represented in the provided rows.

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 1 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 3,718,555,518.00 3.72 billion 21

Insight

Obligations for PIID N0001924C0039 over the last 1 year are entirely concentrated with LOCKHEED MARTIN CORPORATION (CAGE 81755). The vendor received $3.72 billion across 21 awards, indicating a highly concentrated vendor distribution with no other vendors represented in the provided data. This pattern suggests the award activity is overwhelmingly dependent on a single contractor for this period.

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 1 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 3,718,555,518.00 3.72 billion 21

Insight

Within the 1-year window for award N0001924C0039 under agency 9700, obligations are fully concentrated in NAICS 336411, Aircraft Manufacturing. This category accounts for $3.72 billion across 21 awards, indicating a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The concentration suggests the award activity is centered on aircraft manufacturing work rather than a broader industrial mix.

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 1 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 3,718,555,518.00 3.72 billion 21

Insight

Obligations for this award are fully concentrated in PSC 1510, Aircraft, Fixed Wing, totaling $3.72 billion across 21 actions in the 1-year window. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The 21-award count suggests repeated activity within the same product category rather than a single isolated action.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 3,718,555,518.00 3.72 billion 21

Insight

Within the 1-year window, this award shows 2025 obligations of $3.72 billion across 21 actions. Funding is concentrated in a relatively small number of awards, indicating high dollar intensity rather than broad distribution. Because only one year is present, this view supports a point-in-time assessment of obligation concentration rather than a multi-year trend comparison.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.