This page summarizes federal procurement activity for award number N0001924C0025 within agency ID 9700. Over the last 5 years, the award shows 12 actions and $2,739,718,834 in total obligated funding.
Award Number
Award Number 9700 / N0001924C0025 Federal Contract Action Summary (Last 5 Years)
Award number N0001924C0025 for agency 9700 shows 12 recorded actions over the last 5 years, with total obligated funding of $2.74 billion.
Dollar figures are based on the provided readable and exact obligated totals for the analysis window.
Overview
Award number N0001924C0025 is associated with agency 9700 and shows activity across 12 actions in the last 5 years. Total obligated funding is $2,739,718,834, with an average action value of $228,309,902.83.
How to use this page
Use this page to review the overall funding scale and action count tied to this award number. The summary is useful for comparing award activity over the selected period and for quickly identifying the obligated total and average action value.
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 = 'N0001924C0025'
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 | 2,739,718,834.00 | 2.74 billion | 10 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 2 |
Insight
Obligations for this award are highly concentrated in the DEPT OF THE NAVY, which accounts for $2.74 billion across 10 awards in the 5-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears only marginally, with 2 awards and no obligated dollars. This distribution indicates the award’s financial activity is overwhelmingly tied to the Navy, with DCMA present only in a non-obligating role.
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 = 'N0001924C0025'
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 |
|---|---|---|---|---|
| THE BOEING COMPANY | 81205 | 2,739,718,834.00 | 2.74 billion | 12 |
Insight
Within the 5-year window for award N0001924C0025, all reported obligations are concentrated with a single vendor, THE BOEING COMPANY (CAGE 81205). Boeing accounts for $2.74 billion across 12 awards, indicating a highly concentrated award profile with no other vendors represented in the provided data. This pattern suggests the procurement activity under this PIID has been dominated by one incumbent supplier.
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 = 'N0001924C0025'
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 |
|---|---|---|---|---|
| 336411 | AIRCRAFT MANUFACTURING | 2,739,718,834.00 | 2.74 billion | 12 |
Insight
Within the 5-year window, obligations for award N0001924C0025 at agency 9700 are fully concentrated in NAICS 336411, Aircraft Manufacturing. This single NAICS accounts for $2.74 billion across 12 awards, indicating a narrow industrial distribution and a procurement profile tied to aircraft manufacturing activity.
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 = 'N0001924C0025'
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 |
|---|---|---|---|---|
| 1510 | AIRCRAFT, FIXED WING | 2,739,718,834.00 | 2.74 billion | 12 |
Insight
Obligations for PIID N0001924C0025 are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $2.74 billion obligated across 12 awards over the 5-year window. This indicates a narrowly focused procurement profile with no evidence of PSC diversification in the provided data. The distribution suggests the contract activity is centered on a single aircraft-related supply category rather than being spread across multiple PSCs.
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 = 'N0001924C0025'
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 |
|---|---|---|---|
| 2024 | 1,827,948,928.00 | 1.83 billion | 8 |
| 2025 | 911,769,906.00 | 911.77 million | 4 |
Insight
Obligated dollars for PIID N0001924C0025 are concentrated in two fiscal years, with $1.83 billion across 8 awards in FY2024 and $911.77 million across 4 awards in FY2025. FY2025 activity is lower than FY2024 in both obligation value and award count, indicating a reduced but still substantial funding level. The 5-year window provided reflects a short, concentrated funding pattern rather than a broad annual distribution.
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.