This award record covers PIID N0001922F0030 for agency ID 9700 across the last 5 years. It shows 10 award actions with total obligated dollars of 1.55 billion.
Award Number
Award Number 9700 / N0001922F0030 Federal Contract Action Summary (Last 5 Years)
FPDS award page for award number N0001922F0030 under agency ID 9700, showing obligations and action history over the last 5 years.
All dollar figures reflect the provided totals: $1,553,797,869.15 obligated and an average action value of $155,379,786.92.
Overview
The award number N0001922F0030 is associated with agency ID 9700 and shows activity within the last 5 years. Total obligated amount is $1,553,797,869.15 across 10 award actions, which yields an average action value of $155,379,786.92. The page is intended to support quick review of award magnitude and action count.
How to use this page
Use this page to review the award's obligation history and the number of recorded actions over the analysis window. The figures can support FPDS lookup, award-level screening, and basic trend comparison without additional interpretation.
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 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,553,797,869.15 | 1.55 billion | 9 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 1 |
Insight
Within the 5-year window, obligations for PIID N0001922F0030 are heavily concentrated in the DEPT OF THE NAVY, which accounts for $1.55 billion across 9 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears only once and carries no obligated value. This indicates the award’s funding is overwhelmingly centered in the Navy, with no material distribution to other listed 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 = '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 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 | 1,553,797,869.15 | 1.55 billion | 10 |
Insight
Over the 5-year window for award N0001922F0030 under agency 9700, obligations are fully concentrated with BOEING COMPANY, THE (CAGE 76301). This vendor accounts for $1.55 billion across 10 awards, indicating a highly concentrated obligation pattern rather than a diversified vendor mix.
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 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 |
|---|---|---|---|---|
| 336412 | AIRCRAFT ENGINE AND ENGINE PARTS MANUFACTURING | 1,553,797,869.15 | 1.55 billion | 10 |
Insight
Award PIID N0001922F0030 is fully concentrated in NAICS 336412, Aircraft Engine and Engine Parts Manufacturing, with $1.55 billion obligated across 10 awards over the 5-year window. This indicates a highly focused procurement profile with no observable diversification across NAICS categories in the provided data. The concentration suggests the award activity is directly aligned to a single industrial base segment.
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 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 | 1,553,797,869.15 | 1.55 billion | 10 |
Insight
Obligations under PIID N0001922F0030 are entirely concentrated in PSC 1410, Guided Missiles, with $1.55 billion obligated across 10 awards over the 5-year window. This indicates a highly focused procurement pattern with no diversification across other PSCs in the provided data. The average obligated amount per award is substantial, consistent with a major missile-related procurement effort.
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 5 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 across the 5-year window, with most funding occurring in 2023 and 2025. FY 2023 recorded 4 awards totaling $616.94 million, followed by FY 2025 with 3 awards totaling $683.93 million, while FY 2022 had a single award of $244.17 million and FY 2024 fell sharply to $8.75 million across 2 awards. The pattern indicates uneven annual funding distribution rather than steady year-over-year obligation activity.
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.