Award Number

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

Procurement summary for award number N0001919C0013 under agency ID 9700, showing obligation and action activity over the last 10 years.

This page summarizes federal award activity for award number N0001919C0013 in agency ID 9700 across the last 10 years. It shows total obligations of $2,356,006,918.46 across 94 actions, with an average action value of $25,063,903.39.

Generated at 03/20/2026

Analysis period: Last 10 years

All figures reflect the stated analysis window and the provided readable and exact obligated totals.

Agency ID
9700
PIID
N0001919C0013
Type
Award
Total Obligated
2.36 billion
2,356,006,918.46
Actions
94
Average Action Value
25,063,903.39

Overview

Award number N0001919C0013 is associated with 94 recorded actions in the last 10 years. Total obligated amount is $2,356,006,918.46, which reads as 2.36 billion dollars, and the average action value is $25,063,903.39.

How to use this page

Use this page to review obligation volume and action frequency for this award over the selected period. It is useful for quick comparison against other awards, identifying concentration of obligated dollars, and supporting procurement analysis 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 = 'N0001919C0013'
    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 2,356,006,918.46 2.36 billion 91
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 3

Insight

Obligations for PIID N0001919C0013 are overwhelmingly concentrated with the Department of the Navy, which accounts for $2.36 billion across 91 awards in the 10-year window. DCMA appears only marginally, with 3 awards and no obligated dollars recorded. This distribution indicates the award is primarily Navy-funded, with limited administrative or oversight-related activity attributed to 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 = 'N0001919C0013'
        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 03640 2,356,006,918.46 2.36 billion 94

Insight

The award activity is fully concentrated in a single vendor, LOCKHEED MARTIN CORPORATION (CAGE 03640), which received $2.36 billion across 94 awards over the 10-year window. This indicates a high degree of vendor concentration for PIID N0001919C0013, with no other vendors represented in the provided data. The distribution suggests sustained reliance on one incumbent contractor rather than a diversified 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 = 'N0001919C0013'
    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 2,356,006,918.46 2.36 billion 94

Insight

Across the 10-year window, obligations for award PIID N0001919C0013 are fully concentrated in NAICS 336411, Aircraft Manufacturing. This single NAICS accounts for $2.36 billion across 94 awards, indicating a consistently focused procurement profile with no diversification across other industries in the provided data. The award pattern suggests sustained reliance on aircraft manufacturing as the dominant industrial category.

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 = 'N0001919C0013'
    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
1520 AIRCRAFT, ROTARY WING 2,356,006,918.46 2.36 billion 94

Insight

Obligations for this award are fully concentrated in PSC 1520, Aircraft, Rotary Wing, totaling $2.36 billion across 94 awards. This indicates a highly focused procurement profile with no visible diversification across PSC categories in the provided 10-year window. The volume of awards relative to the dollar value suggests repeated activity within the same aircraft category rather than broad spending across multiple product or service types.

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 = 'N0001919C0013'
    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
2018 147,000,000.00 147.00 million 1
2019 159,343,882.00 159.34 million 8
2020 1,399,713,546.99 1.40 billion 18
2021 319,695,183.00 319.70 million 11
2022 103,362,418.03 103.36 million 14
2023 130,267,822.63 130.27 million 12
2024 0.01 0.01 9
2025 96,624,065.80 96.62 million 21

Insight

Obligations for PIID N0001919C0013 are concentrated in 2020, which accounts for the clear peak in the 10-year period at $1.40 billion across 18 awards. Outside 2020, annual obligations are materially lower and range from about $96.62 million to $319.70 million, with award counts generally between 8 and 21. The pattern indicates a one-year funding surge followed by lower, more variable annual obligation levels through 2025.

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.