Award Number

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

Federal procurement analysis for award number N0001917C0001 under Agency ID 9700, covering the last 10 years of recorded actions.

This page summarizes obligation activity for award N0001917C0001 over the last 10 years. The award shows 211 actions and total obligated value of 35.14 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Total obligated value is shown as 35,135,514,910.2 in exact dollars, with an average action value of 166,519,028.01.

Agency ID
9700
PIID
N0001917C0001
Type
Award
Total Obligated
35.14 billion
35,135,514,910.20
Actions
211
Average Action Value
166,519,028.01

Overview

The record for award number N0001917C0001 reflects 211 award actions within the analysis window. Total obligated value is 35.14 billion, with an exact figure of 35,135,514,910.2 and an average action value of 166,519,028.01. This page is organized for review of obligation levels and action volume associated with the award. It presents the supplied FPDS-style fields without adding assumptions about scope, period details, or contract structure beyond the provided data.

How to use this page

Use this page to review the award’s obligation history and compare total obligated value with action count over the last 10 years. The average action value can help frame how large individual actions were relative to the overall award total. For deeper analysis, pair this award-level view with linked FPDS fields such as actions by date, obligated changes, and related identifiers. The page is intended as a concise reference for procurement analysis and record retrieval.

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 = 'N0001917C0001'
    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 35,135,514,910.20 35.14 billion 162
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 49

Insight

Over the 10-year window, obligations associated with PIID N0001917C0001 are highly concentrated in DEPT OF THE NAVY, which accounts for $35.14 billion across 162 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears with 49 awards but zero obligated dollars, indicating administrative or oversight activity rather than funded obligation. Overall, the funding distribution is overwhelmingly concentrated within the Navy, with no dollar value attributable to DCMA 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 = 'N0001917C0001'
        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 35,135,514,910.20 35.14 billion 211

Insight

LOCKHEED MARTIN CORPORATION (CAGE 81755) accounts for the full top-vendor concentration for this award, with $35.14 billion obligated across 211 awards in the 10-year window. This indicates a highly concentrated vendor profile, with obligations and award activity dominated by a single contractor. No other vendors are reflected in the provided rows for this section.

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 = 'N0001917C0001'
    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 35,135,514,910.20 35.14 billion 211

Insight

Over the 10-year window, obligations for award N0001917C0001 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $35.14 billion obligated across 211 awards. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The volume and dollar concentration suggest this contract action is heavily tied to aircraft manufacturing requirements.

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 = 'N0001917C0001'
    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 35,135,514,910.20 35.14 billion 211

Insight

Obligations for this award are fully concentrated in PSC 1510, Aircraft, Fixed Wing, totaling $35.14 billion across 211 awards. This indicates the award activity is dominated by fixed-wing aircraft procurement, with no evidence in the provided data of meaningful PSC diversification. The volume of awards suggests repeated procurement activity within the same product category over the 10-year window.

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 = 'N0001917C0001'
    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
2017 1,490,198,520.00 1.49 billion 8
2018 8,257,238,215.00 8.26 billion 18
2019 19,051,863,559.00 19.05 billion 32
2020 5,884,876,265.20 5.88 billion 58
2021 -39,977,921.20 -39.98 million 29
2022 425,533,756.00 425.53 million 35
2023 66,107,679.20 66.11 million 21
2024 788,239.00 788.24 thousand 8
2025 -1,113,402.00 -1.11 million 2

Insight

Obligations for PIID N0001917C0001 are heavily concentrated in 2018–2020, peaking at $19.05 billion in 2019 after $8.26 billion in 2018, with award counts also highest in that span. Activity then declines sharply beginning in 2021, when obligations turn negative at $39.98 million, followed by much lower levels in 2022–2025, including only $788.24 thousand in 2024 and a further $1.11 million negative in 2025. Award volume similarly contracts from 58 in 2020 to 2 in 2025, indicating a pronounced taper after the earlier high-obligation period.

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.