Award Number

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

Award number N0001919C0010 for agency 9700 shows obligation activity over the last 5 years, with 92 award actions and $3.33 billion obligated.

This award page summarizes recent FPDS activity for award number N0001919C0010 under agency ID 9700. The record reflects 92 actions and $3,325,343,811.80 in total obligations during the last 5 years.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the analysis window provided and the exact obligated amount, which rounds to $3.33 billion for readability.

Agency ID
9700
PIID
N0001919C0010
Type
Award
Total Obligated
3.33 billion
3,325,343,811.80
Actions
92
Average Action Value
36,145,041.43

Overview

Award number N0001919C0010 is associated with agency ID 9700 and shows sustained obligated activity across the last 5 years. The award records 92 actions and $3,325,343,811.80 in total obligations, with an average action value of $36,145,041.43. These figures describe the scale and frequency of recorded award activity without adding detail beyond the provided FPDS inputs.

How to use this page

Use this page to review award-level obligation totals, action count, and average action value for N0001919C0010. The information is suitable for quick analysis, comparison, and citation within the stated 5-year window. It should be read as a summary of recorded procurement activity for agency 9700, not as a statement of contract performance or scope.

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 = 'N0001919C0010'
    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 3,325,343,811.80 3.33 billion 92

Insight

Over the past 5 years, obligations for PIID N0001919C0010 are fully concentrated in a single agency, the DEPT OF THE NAVY (agency ID 1700). This agency accounts for 92 awards and $3.33 billion in total obligated value, indicating that funding for this award has been consistently and exclusively Navy-driven within the observed 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 = 'N0001919C0010'
        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 3,325,343,811.80 3.33 billion 92

Insight

Within the 5-year window for award PIID N0001919C0010, obligated dollars are fully concentrated in a single vendor: LOCKHEED MARTIN CORPORATION (CAGE 81755). The vendor accounts for $3.33 billion across 92 awards, indicating a highly concentrated obligational profile with no other vendors represented in the provided results. This suggests the award activity captured here is dominated by one incumbent contractor rather than a distributed vendor base.

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 = 'N0001919C0010'
    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 3,325,343,811.80 3.33 billion 92

Insight

Obligations under PIID N0001919C0010 are fully concentrated in NAICS 336411, Aircraft Manufacturing, which accounts for the entire 5-year obligated total of $3.33 billion across 92 awards. This indicates a highly concentrated procurement profile with no diversity across NAICS codes in the provided data. The award count suggests repeated activity within the same industrial classification rather than broad distribution across sectors.

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 = 'N0001919C0010'
    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 3,325,343,811.80 3.33 billion 92

Insight

Obligations are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $3.33 billion across 92 awards over the 5-year window. This indicates a highly focused procurement profile centered on fixed-wing aircraft rather than a diversified mix of product categories. The award count suggests repeated activity in the same PSC, supporting the conclusion that this contract vehicle is used consistently for aircraft-related obligations.

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 = 'N0001919C0010'
    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 897,750,677.25 897.75 million 30
2022 871,611,580.76 871.61 million 22
2023 726,013,647.48 726.01 million 14
2024 499,780,585.50 499.78 million 13
2025 330,187,320.81 330.19 million 13

Insight

Obligations for PIID N0001919C0010 declined steadily over the 5-year window, falling from $897.75 million in 2021 to $330.19 million in 2025, a reduction of more than 60%. Award volume also contracted from 30 awards in 2021 to 13 awards in both 2024 and 2025, indicating a narrower distribution of activity over time. The largest annual obligation levels occurred in 2021 and 2022, with materially lower funding in subsequent 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.