This page summarizes federal procurement activity for award number FA863422F0035 under agency ID 9700. The record covers the last 10 years and reflects $2,039,776,433.36 in total obligated amount across 17 actions.
Award Number
Award Number 9700 / FA863422F0035 Federal Contract Action Summary (Last 10 Years)
FPDS award number FA863422F0035 for agency ID 9700 shows 17 award actions over the last 10 years, with total obligations of $2.04 billion.
Dollar figures are based on the provided readable and exact totals, and the average action value is $119,986,849.02.
Overview
Award number FA863422F0035 is associated with agency ID 9700 and shows procurement activity concentrated within the last 10 years. The total obligated amount is $2,039,776,433.36 across 17 award actions, for an average action value of $119,986,849.02. This page presents the award-level record as a single procurement entity rather than a broader agency summary.
How to use this page
Use this page to review the award-level obligation pattern and action count for FA863422F0035. It is useful for checking the scale of spending associated with the award and for comparing this record against other awards, periods, or agency-level FPDS data. The figures here are limited to the inputs provided for this award number and analysis window.
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 = 'FA863422F0035'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 | 2,039,776,433.36 | 2.04 billion | 17 |
Insight
Over the 10-year window, obligations for PIID FA863422F0035 are fully concentrated within the DEPT OF THE AIR FORCE. The agency accounts for the entire observed activity in this result set, with 17 awards totaling $2.04 billion. This indicates a highly concentrated award distribution with no visible cross-agency spread in the provided data.
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 = 'FA863422F0035'
AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
AND content__award__vendor__vendorHeader__vendorName != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 | 2,039,776,433.36 | 2.04 billion | 17 |
Insight
Obligations under PIID FA863422F0035 over the 10-year window are fully concentrated with a single vendor, BOEING COMPANY, THE (CAGE 76301). That vendor received 17 awards totaling $2.04 billion, indicating all observed obligated activity in this query is centralized with one recipient rather than distributed across multiple vendors. This pattern suggests a highly concentrated award profile for the record examined.
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 = 'FA863422F0035'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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,039,776,433.36 | 2.04 billion | 17 |
Insight
Obligations for PIID FA863422F0035 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $2.04 billion across 17 awards over the 10-year window. This indicates a highly focused procurement profile with no observed NAICS diversification in the provided data. The award mix suggests repeated funding within a single industrial classification rather than spread across multiple sectors.
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 = 'FA863422F0035'
AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
AND content__award__productOrServiceInformation__productOrServiceCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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,039,776,433.36 | 2.04 billion | 17 |
Insight
Obligations for PIID FA863422F0035 are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $2.04 billion obligated across 17 awards over the 10-year window. This indicates a highly focused procurement profile with no visible PSC diversification in the provided data. The concentration suggests the award activity is tied to a single equipment category rather than a broader mix of supplies or services.
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 = 'FA863422F0035'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2022 | 72,451,400.00 | 72.45 million | 1 |
| 2023 | 1,790,086,205.64 | 1.79 billion | 3 |
| 2024 | 41,855,552.10 | 41.86 million | 6 |
| 2025 | 135,383,275.62 | 135.38 million | 7 |
Insight
Obligations are highly concentrated in 2023, when 3 awards accounted for $1.79 billion, far exceeding all other years in the 10-year window provided. Award volume increases in 2024 and 2025 to 6 and 7 awards, respectively, but obligated amounts remain much lower at $41.86 million and $135.38 million, indicating a shift toward smaller annual obligation levels after the 2023 peak. The 2022 activity was limited to 1 award totaling $72.45 million, underscoring the uneven year-to-year 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.