Award Number

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

Award number N0001920C0032 for agency 9700 shows 71 actions over the last 5 years with $1.12 billion in obligated value.

This award record covers agency ID 9700 and PIID N0001920C0032 during the last 5 years. The award shows total obligated value of $1,116,594,765.02 across 71 actions, with an average action value of $15,726,686.83.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the provided analysis window and may not match other reporting periods or summaries.

Agency ID
9700
PIID
N0001920C0032
Type
Award
Total Obligated
1.12 billion
1,116,594,765.02
Actions
71
Average Action Value
15,726,686.83

Overview

Over the last 5 years, award number N0001920C0032 under agency ID 9700 recorded 71 actions and $1,116,594,765.02 in obligated value. The average action value was $15,726,686.83, indicating a high-value award record with multiple modifications or transaction points over the period.

How to use this page

Use this page to review the award’s obligation total, action count, and average action value within the stated analysis window. It is a summary view for comparing this award against other FPDS records 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 = 'N0001920C0032'
    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 1,116,594,765.02 1.12 billion 70
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Obligations on this award are highly concentrated in the Department of the Navy, which accounts for $1.12 billion across 70 awards over the 5-year window. The Defense Contract Management Agency appears once but with no obligated amount, indicating no material funding distribution to that agency in the provided data. Overall, the award activity is overwhelmingly centered within the Navy rather than spread across multiple agencies.

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 = 'N0001920C0032'
        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 1,116,594,765.02 1.12 billion 71

Insight

LOCKHEED MARTIN CORPORATION is the sole top vendor on this award, accounting for $1.12 billion across 71 obligations over the 5-year window. This indicates a highly concentrated vendor profile, with all reported obligated value in the section attributable to a single contractor. The distribution suggests sustained reliance on one vendor rather than a diversified award 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 = 'N0001920C0032'
    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 1,116,594,765.02 1.12 billion 71

Insight

Obligations for PIID N0001920C0032 are fully concentrated in NAICS 336411, Aircraft Manufacturing, over the 5-year window. This NAICS accounts for $1.12 billion across 71 awards, indicating a highly concentrated procurement profile with no diversification reflected in the provided rows.

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 = 'N0001920C0032'
    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 1,116,594,765.02 1.12 billion 71

Insight

Obligations for PIID N0001920C0032 are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $1.12 billion obligated across 71 awards over the 5-year window. This indicates a highly focused procurement profile with no visible distribution across other PSC categories in the provided data. The award count suggests repeated obligational activity within a single product line rather than broad category diversification.

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 = 'N0001920C0032'
    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 180,391,988.38 180.39 million 11
2022 275,759,853.46 275.76 million 15
2023 298,152,161.21 298.15 million 18
2024 270,532,503.00 270.53 million 13
2025 91,758,258.97 91.76 million 14

Insight

Obligations for PIID N0001920C0032 were concentrated in 2022 through 2024, rising from $180.39 million in 2021 to a peak of $298.15 million in 2023 before easing to $270.53 million in 2024. Award counts increased from 11 in 2021 to 18 in 2023, then declined to 13 in 2024, indicating higher volume during the middle of the period. 2025 reflects a lower obligated total of $91.76 million across 14 awards, suggesting reduced funding volume relative to prior 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.