Award Number

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

Award number N0001922F0030 for agency 9700 shows 10 actions over the last 10 years with $1.55 billion obligated.

This page summarizes federal procurement activity for award N0001922F0030 under agency ID 9700. The record reflects 10 award actions and total obligated dollars of $1,553,797,869.15 during the last 10 years.

Generated at 03/20/2026

Analysis period: Last 10 years

Dollar totals are shown as both readable and exact values; average action value is $155,379,786.92.

Agency ID
9700
PIID
N0001922F0030
Type
Award
Total Obligated
1.55 billion
1,553,797,869.15
Actions
10
Average Action Value
155,379,786.92

Overview

The award record for N0001922F0030 is summarized here for agency ID 9700 across a 10-year analysis window. Total obligated funding is $1,553,797,869.15, with an average action value of $155,379,786.92 across 10 award actions. This page is intended to support quick review of award-level procurement activity.

How to use this page

Use this page to review the total obligation, action count, and average action value associated with award N0001922F0030. It can be used as a starting point for comparing award activity over time within the same agency or for validating the underlying FPDS record.

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 = 'N0001922F0030'
    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 1,553,797,869.15 1.55 billion 9
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Obligations on this award are highly concentrated within the Department of the Navy, which accounts for 1.55 billion across 9 awards over the 10-year window. The only other agency listed, the Defense Contract Management Agency (DCMA), reflects a single award with no obligated amount. This distribution indicates that obligated activity is effectively centered in the Navy with minimal cross-agency funding 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 = 'N0001922F0030'
        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 1,553,797,869.15 1.55 billion 10

Insight

Obligations for PIID N0001922F0030 are fully concentrated with a single vendor, BOEING COMPANY, THE (CAGE 76301), which received $1.55 billion across 10 awards over the 10-year window. This indicates a highly concentrated vendor distribution with no evidence of diversification among top vendors in the provided data. The award pattern suggests sustained reliance on one contractor for this procurement action.

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 = 'N0001922F0030'
    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
336412 AIRCRAFT ENGINE AND ENGINE PARTS MANUFACTURING 1,553,797,869.15 1.55 billion 10

Insight

Obligations for PIID N0001922F0030 are fully concentrated in NAICS 336412, Aircraft Engine and Engine Parts Manufacturing, over the 10-year window. This category accounts for $1.55 billion across 10 awards, indicating a highly focused procurement profile with no 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 = 'N0001922F0030'
    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 1,553,797,869.15 1.55 billion 10

Insight

Obligations under PIID N0001922F0030 are concentrated entirely in PSC 1410, Guided Missiles, with $1.55 billion obligated across 10 awards over the 10-year window. This indicates a highly focused procurement profile with no visible diversification across other PSCs in the provided data. The average obligation per award is substantial, consistent with a program concentrated in a single product category.

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 = 'N0001922F0030'
    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
2022 244,171,900.00 244.17 million 1
2023 616,938,351.85 616.94 million 4
2024 8,754,830.00 8.75 million 2
2025 683,932,787.30 683.93 million 3

Insight

Obligations for PIID N0001922F0030 are highly concentrated in 2023 and 2025, which together account for the largest funding levels in the 10-year window provided. Activity is distributed across 10 awards in the four reported years, but obligation volume is uneven: 2024 is a notable low point at $8.75 million across 2 awards, compared with $244.17 million in 2022, $616.94 million in 2023, and $683.93 million in 2025. This pattern indicates a cyclical or episodic funding profile rather than steady annual obligation levels.

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.