Award Number

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

Federal award page for award number N0001920C0003 under agency ID 9700, summarizing obligations and actions over the last 10 years.

This page summarizes the federal award identified by PIID N0001920C0003 for agency ID 9700 across the last 10 years. The award shows total obligated amounts of 2.06 billion across 12 actions, with an average action value of 171554584.26.

Generated at 03/20/2026

Analysis period: Last 10 years

Figures shown reflect the provided analysis window and may differ from other reporting views due to rounding.

Agency ID
9700
PIID
N0001920C0003
Type
Award
Total Obligated
2.06 billion
2,058,655,011.17
Actions
12
Average Action Value
171,554,584.26

Overview

Award N0001920C0003 is associated with agency ID 9700 and shows 12 recorded actions in the last 10 years. Total obligated funding is 2058655011.17, or about 2.06 billion when rounded for display. The average action value is 171554584.26.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for the selected period. It is useful for comparing this award to other contracts or tracking changes in obligation activity over time.

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 = 'N0001920C0003'
    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,058,655,011.17 2.06 billion 11
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Obligations for PIID N0001920C0003 are heavily concentrated in the DEPT OF THE NAVY, which accounts for 11 awards and $2.06 billion in obligations over the 10-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears only once and carries no obligated dollars, indicating minimal distribution outside the Navy. This pattern suggests the award is effectively Navy-centric, with no material obligation concentration in other agencies listed.

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 = 'N0001920C0003'
        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
BOEING COMPANY, THE 76301 2,058,655,011.17 2.06 billion 12

Insight

Award obligations for PIID N0001920C0003 are fully concentrated with a single vendor over the 10-year window. BOEING COMPANY, THE (CAGE 76301) accounts for $2.06 billion across 12 awards, indicating a highly concentrated vendor profile with no other vendors represented in this section. This pattern suggests the award’s obligation history is dependent on one contractor rather than distributed across multiple suppliers.

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 = 'N0001920C0003'
    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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 2,058,655,011.17 2.06 billion 12

Insight

Obligations for award N0001920C0003 are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. Over the 10-year window, this category accounts for $2.06 billion across 12 awards, indicating a highly focused procurement profile with no visible diversification across other NAICS codes in the provided data.

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 = 'N0001920C0003'
    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
1410 GUIDED MISSILES 2,058,655,011.17 2.06 billion 12

Insight

Obligations for PIID N0001920C0003 are fully concentrated in PSC 1410, Guided Missiles, with $2.06 billion obligated across 12 awards over the 10-year window. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The average obligation per award is substantial, reflecting a concentrated weapons-related spend pattern within the award record.

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 = 'N0001920C0003'
    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
2020 1,971,754,089.00 1.97 billion 1
2021 78,355,685.88 78.36 million 2
2022 9,204,305.76 9.20 million 3
2023 0.00 0.00 1
2024 -309,819.49 -309.82 thousand 4
2025 -349,249.98 -349.25 thousand 1

Insight

Obligations for PIID N0001920C0003 are heavily concentrated in 2020, when a single award accounts for $1.97 billion, far exceeding all subsequent years. Activity then drops sharply, with obligations of $78.36 million in 2021 and $9.20 million in 2022, followed by zero obligations in 2023. The most recent years show negative obligated amounts in 2024 and 2025, indicating downward adjustments or deobligations rather than new positive funding, with award counts remaining low throughout the 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.