Award Number

Award Number 9700 / N0001915C0003 Federal Contract Action Summary (Last 10 Years)

Federal procurement record for award number N0001915C0003 at agency 9700, showing obligations and action activity over the last 10 years.

This page summarizes the award-level procurement record for PIID N0001915C0003 within agency ID 9700. The analysis window covers the last 10 years and includes 253 award actions with total obligations of 9.52 billion dollars.

Generated at 03/20/2026

Analysis period: Last 10 years

Total obligated exact is 9,518,606,013.07, and the average action value is 37,622,948.67.

Agency ID
9700
PIID
N0001915C0003
Type
Award
Total Obligated
9.52 billion
9,518,606,013.07
Actions
253
Average Action Value
37,622,948.67

Overview

The award record for PIID N0001915C0003 shows 253 actions in the last 10 years, with total obligated amount of 9,518,606,013.07. The readable total is 9.52 billion dollars, and the average action value is 37,622,948.67. This page is organized at the award number level for agency ID 9700.

How to use this page

Use this page to review the scale and activity pattern of the award over the analysis window. The totals and action count provide a compact summary for procurement review, tracking, and comparison with other award records.

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 = 'N0001915C0003'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 9,518,606,013.07 9.52 billion 216
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 37

Insight

Obligations are heavily concentrated in the Department of the Navy, which accounts for $9.52 billion across 216 awards. DCMA appears as a secondary agency with 37 awards but no obligated dollars, indicating administrative or oversight activity rather than funding concentration. Over the 10-year window, this pattern suggests the award activity for PIID N0001915C0003 is dominated by Navy funding with limited financial impact recorded under DCMA.

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 = 'N0001915C0003'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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,772,003,753.07 7.77 billion 235
LOCKHEED MARTIN CORPORATION 1,746,602,260.00 1.75 billion 18

Insight

Award activity for PIID N0001915C0003 is highly concentrated in LOCKHEED MARTIN CORPORATION, which accounts for the full set of top-vendor obligations listed in this 10-year window. The CAGE 81755 entry received $7.77 billion across 235 awards, while a separate LOCKHEED MARTIN CORPORATION entry without a CAGE code received $1.75 billion across 18 awards. This distribution indicates a strong vendor concentration within the same corporate name, with obligations heavily weighted toward the CAGE 81755 record.

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 = 'N0001915C0003'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 9,518,606,013.07 9.52 billion 253

Insight

Over the 10-year window, obligations for PIID N0001915C0003 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $9.52 billion obligated across 253 awards. This indicates a highly focused procurement profile with no visible NAICS diversification in the provided data. The award pattern is consistent with sustained activity in a single aircraft manufacturing category rather than a broad industry 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 = 'N0001915C0003'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 9,518,606,013.07 9.52 billion 253

Insight

Obligations for PIID N0001915C0003 are highly concentrated in PSC 1510, Aircraft, Fixed Wing, with $9.52 billion obligated across 253 awards. This indicates a dominant requirement centered on fixed-wing aircraft procurement or support activity over the 10-year window. No other PSCs are provided in this section, so the available data indicates strong concentration rather than a diversified PSC mix.

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 = 'N0001915C0003'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2016 1,746,602,260.00 1.75 billion 16
2017 7,099,044,740.00 7.10 billion 42
2018 311,726,072.00 311.73 million 84
2019 275,331,240.00 275.33 million 42
2020 159,185,057.00 159.19 million 39
2021 -23,467,193.00 -23.47 million 16
2022 -50,041,363.00 -50.04 million 10
2023 225,200.07 225.20 thousand 3
2025 0.00 0.00 1

Insight

Obligations for PIID N0001915C0003 are highly concentrated in 2016 and 2017, which together account for the vast majority of the 10-year obligated total, including a peak of $7.10 billion in 2017. After 2017, obligations fell sharply to the hundreds of millions in 2018–2020, then turned negative in 2021 and 2022, indicating significant downward adjustments or deobligations in later years. Activity also contracted materially over time, with award counts dropping from 84 in 2018 to 3 in 2023 and 1 in 2025, suggesting a much smaller volume of recent actions.

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