This page summarizes award number FA873023C0025 for agency ID 9700 across the last 5 years. The record shows 35 award actions and total obligated dollars of 1.893 billion.
Award Number
Award Number 9700 / FA873023C0025 Federal Contract Action Summary (Last 5 Years)
Federal procurement summary for award number FA873023C0025 under agency ID 9700, showing obligation and action activity over the last 5 years.
Obligation figures are presented as readable and exact values; the exact total obligated amount is 1893176924.88.
Overview
Award number FA873023C0025 has 35 recorded actions in the last 5 years. Total obligated funding is 1.89 billion, with an average action value of 54,090,769.28. These figures reflect the procurement activity available for this award in the analysis window.
How to use this page
Use this page to review the scale and cadence of activity tied to FA873023C0025. The combination of action count, total obligated amount, and average action value provides a compact view of how this award has been used over time. It is suitable for basic procurement review, cross-reference, and trend context.
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 = 'FA873023C0025'
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 |
|---|---|---|---|---|
| 5700 | DEPT OF THE AIR FORCE | 1,893,176,924.88 | 1.89 billion | 34 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 1 |
Insight
Over the 5-year window, obligations for PIID FA873023C0025 are highly concentrated in the Department of the Air Force, which accounts for $1.89 billion across 34 awards. Defense Contract Management Agency appears once in the record but with no obligated value. This pattern indicates that substantive funding activity is overwhelmingly associated with the Air Force, with DCMA present only as a nominal award entry.
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 = 'FA873023C0025'
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 | 1,893,176,924.88 | 1.89 billion | 35 |
Insight
THE BOEING COMPANY is the only vendor reported for this award over the 5-year window, with 35 awards totaling $1.89 billion. Obligations are fully concentrated with a single vendor, indicating no distribution across multiple recipients within the provided data. This pattern suggests sustained vendor dependence for the award rather than a diversified obligation profile.
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 = 'FA873023C0025'
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 | 1,893,176,924.88 | 1.89 billion | 35 |
Insight
Within the 5-year window, obligations for award FA873023C0025 are fully concentrated in NAICS 336411, Aircraft Manufacturing. This single NAICS accounts for the entire reported obligation base of $1.89 billion across 35 awards, indicating a highly focused procurement pattern with no diversification across additional NAICS categories 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 = 'FA873023C0025'
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 |
|---|---|---|---|---|
| 1560 | AIRFRAME STRUCTURAL COMPONENTS | 1,893,176,924.88 | 1.89 billion | 35 |
Insight
Obligations under PIID FA873023C0025 are fully concentrated in PSC 1560, Airframe Structural Components, with $1.89 billion obligated across 35 awards over the 5-year window. This indicates a highly focused procurement profile with no diversification across PSCs in the provided data. The award volume suggests repeated obligation activity within the same product category rather than broad category distribution.
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 = 'FA873023C0025'
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 |
|---|---|---|---|
| 2023 | 498,415,159.12 | 498.42 million | 10 |
| 2024 | 715,369,860.96 | 715.37 million | 9 |
| 2025 | 679,391,904.80 | 679.39 million | 16 |
Insight
Obligations for PIID FA873023C0025 are concentrated in three fiscal years within the 5-year window, with no activity reflected in the provided rows outside FY 2023–FY 2025. Funding increased from $498.42 million across 10 awards in FY 2023 to $715.37 million across 9 awards in FY 2024, then remained elevated at $679.39 million in FY 2025 while award count rose to 16. The pattern indicates sustained high-dollar activity with a shift toward a larger number of awards in FY 2025 despite slightly lower total obligated dollars than FY 2024.
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.