This page summarizes the award identified by PIID N0001922F0030 for agency 9700 over the last full year. The award shows 3 actions and total obligations of $683.93 million, with an average action value of $227,977,595.77.
Award Number
Award Number 9700 / N0001922F0030 Federal Contract Action Summary (Last Year)
Award record for PIID N0001922F0030 under agency 9700, showing last full year obligation activity and action history.
Total obligated values are shown as both readable and exact amounts, and action counts reflect the analysis window selected.
Overview
In the last full year, award PIID N0001922F0030 recorded 3 award actions with total obligations of $683,932,787.3. The average action value was $227,977,595.77, indicating a small number of high-value transactions within the selected period.
How to use this page
Use this page to review obligation totals and action frequency for PIID N0001922F0030 within the last full year. The figures support basic award-level analysis and can be used to compare this award against other records under agency 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 = 'N0001922F0030'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 | 683,932,787.30 | 683.93 million | 2 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 1 |
Insight
Obligations for this award are highly concentrated in the DEPT OF THE NAVY, which accounts for $683.93 million across 2 awards in the 1-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears once in the period but with no obligated dollars, indicating no material funding distribution beyond the Navy. This pattern suggests the award’s financial activity is effectively concentrated within a single agency.
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 1 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 | 683,932,787.30 | 683.93 million | 3 |
Insight
Within the 1-year window for award N0001922F0030 under agency 9700, all reported obligation is concentrated with a single vendor, BOEING COMPANY, THE (CAGE 76301). This vendor accounts for 3 awards totaling $683.93 million, indicating a highly concentrated award distribution with no diversification across additional vendors in the provided data.
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 1 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 | 683,932,787.30 | 683.93 million | 3 |
Insight
Award activity in the 1-year window is fully concentrated in NAICS 336412, Aircraft Engine and Engine Parts Manufacturing. This category accounts for $683.93 million across 3 awards, indicating a narrow but highly concentrated obligation pattern. No other NAICS codes are represented in the provided rows, so the observed distribution is entirely dependent on this single industrial classification.
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 1 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 | 683,932,787.30 | 683.93 million | 3 |
Insight
Obligations for this award over the past year are fully concentrated in PSC 1410, Guided Missiles. The award totals $683.93 million across 3 actions, indicating a narrow product concentration rather than a distributed mix of PSCs. This pattern suggests the procurement is focused on a single high-value missile-related capability.
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 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2025 | 683,932,787.30 | 683.93 million | 3 |
Insight
In the 1-year window, obligations for PIID N0001922F0030 are concentrated in FY 2025, with $683.93 million obligated across 3 awards. This indicates a highly concentrated obligation profile rather than a broad distribution across multiple fiscal years. With only one year represented, no year-over-year trend can be assessed from the provided data.
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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.