Award Number

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

Federal procurement record for award number N0001920C0003 under agency ID 9700, showing 11 actions and $86.90 million obligated over the last 5 years.

This page summarizes the award activity for PIID N0001920C0003 during the last 5 years. The record shows 11 award actions with total obligated funding of $86,900,922.17 and an average action value of $7,900,083.83.

Generated at 03/20/2026

Analysis period: Last 5 years

Amounts reflect the provided readable and exact obligated totals for the analysis window and may differ by rounding.

Agency ID
9700
PIID
N0001920C0003
Type
Award
Total Obligated
86.90 million
86,900,922.17
Actions
11
Average Action Value
7,900,083.83

Overview

The award number N0001920C0003 is associated with agency ID 9700 and includes 11 recorded actions in the last 5 years. Total obligated funding for the period is $86,900,922.17, with an average action value of $7,900,083.83. This page provides a compact view of the award’s obligation profile over the analysis window.

How to use this page

Use this page to review obligation totals, action count, and average action size for the award record. It is suitable for comparing award activity over time or cross-checking the FPDS-derived funding summary against the underlying identifier.

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 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 86,900,922.17 86.90 million 10
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Within the 5-year window for PIID N0001920C0003, obligations are concentrated almost entirely with the Department of the Navy, which accounts for $86.90 million across 10 awards. DCMA appears only once and carries no obligated value, indicating minimal funding activity outside the Navy. This distribution suggests the award’s financial activity is highly concentrated under a single agency with limited secondary involvement.

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 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
BOEING COMPANY, THE 76301 86,900,922.17 86.90 million 11

Insight

Over the past 5 years, obligations for PIID N0001920C0003 are fully concentrated with a single vendor, BOEING COMPANY, THE (CAGE 76301). This vendor received 11 awards totaling $86.90 million, indicating a highly concentrated award distribution with no other vendors appearing in this query result.

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 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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 86,900,922.17 86.90 million 11

Insight

Over the 5-year window, obligations for award N0001920C0003 are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This NAICS accounts for $86.90 million across 11 awards, indicating a narrow and highly focused industrial base for this award activity. No other NAICS codes are represented in the provided data, so the observed distribution is entirely concentrated in this single manufacturing 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 = 'N0001920C0003'
    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
1410 GUIDED MISSILES 86,900,922.17 86.90 million 11

Insight

Over the 5-year window for award N0001920C0003, obligations are fully concentrated in PSC 1410, Guided Missiles, with $86.90 million across 11 awards. This indicates a narrow product mix and sustained spending in a single PSC category rather than a distributed obligation profile. The pattern suggests the award is tightly focused on guided missile-related requirements.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 under Agency ID 9700 are heavily concentrated in 2021, which accounts for 78.36 million across 2 awards and far exceeds subsequent years. Activity declines sharply in 2022 to 9.20 million across 3 awards, then drops to zero in 2023. The final two years show negative obligated amounts in 2024 and 2025, indicating downward adjustments rather than new positive obligation growth, with award counts remaining low and uneven.

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.