This page summarizes obligation activity tied to award number FA863423F0048 for agency ID 9700 over the last 5 years. The award shows 13 actions and total obligated amount of 3.93 billion.
Award Number
Award Number 9700 / FA863423F0048 Federal Contract Action Summary (Last 5 Years)
Federal procurement profile for award number FA863423F0048 under agency ID 9700, covering the last 5 years of recorded actions.
Totals reflect the provided analysis window and may differ from values outside that period or from unrounded source records.
Overview
Across the last 5 years, award number FA863423F0048 recorded 13 award actions with total obligated funding of 3,932,715,048.3. The average action value is 302,516,542.18, which indicates a high-dollar award with repeated recorded activity in the period. This page is intended to support review of obligation totals and action count for the identified award.
How to use this page
Use this page to quickly assess the scale of obligational activity tied to FA863423F0048 and to compare its action count and average action value with other awards. The figures are limited to the provided five-year analysis window and should be read as a summary of recorded award actions, not a full contract history.
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 = 'FA863423F0048'
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 | 3,932,715,048.30 | 3.93 billion | 13 |
Insight
Over the 5-year window for PIID FA863423F0048, obligations are concentrated entirely with DEPT OF THE AIR FORCE (agency ID 5700). The reported 3.93 billion in total obligated across 13 awards indicates a highly concentrated award distribution with no other top agency recipients listed in the provided rows. This suggests the award activity is tightly associated with a single agency relationship.
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 = 'FA863423F0048'
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 | 3,932,715,048.30 | 3.93 billion | 13 |
Insight
Within the 5-year window, obligations for PIID FA863423F0048 are fully concentrated with a single vendor, BOEING COMPANY, THE (CAGE 76301). This vendor accounts for $3.93 billion across 13 awards, indicating a highly concentrated award pattern rather than a distributed vendor base. Such concentration suggests this vehicle or requirement has been consistently placed with 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 = 'FA863423F0048'
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 | 3,932,715,048.30 | 3.93 billion | 13 |
Insight
Obligations under PIID FA863423F0048 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $3.93 billion across 13 awards over the 5-year window. This indicates a narrow industrial focus and little to no NAICS diversification within the provided award data. The concentration is material and suggests the action is tied to aircraft manufacturing requirements rather than a broad procurement mix.
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 = 'FA863423F0048'
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 | 3,932,715,048.30 | 3.93 billion | 13 |
Insight
Obligations for PIID FA863423F0048 are fully concentrated in PSC 1510, Aircraft, Fixed Wing, totaling $3.93 billion across 13 awards. This indicates a highly focused procurement profile with no diversification across other product or service categories in the provided data. The award activity is concentrated in a single PSC over the 5-year window, suggesting the procurement is dominated by fixed-wing aircraft acquisition or support requirements.
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 = 'FA863423F0048'
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 | 68,727,359.00 | 68.73 million | 3 |
| 2024 | 2,417,721,345.30 | 2.42 billion | 5 |
| 2025 | 1,446,266,344.00 | 1.45 billion | 5 |
Insight
Obligations for PIID FA863423F0048 are highly concentrated in the most recent years of the 5-year window. Funding increased from 68.73 million across 3 awards in 2023 to 2.42 billion across 5 awards in 2024, then remained elevated at 1.45 billion across 5 awards in 2025. This pattern indicates a sharp surge in obligated value in 2024 followed by a partial decline in 2025, while award count stayed stable at a higher level than in 2023.
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.