Award Number

Award Number 9700 / FA863423F0048 Federal Contract Action Summary (Last Year)

Award number FA863423F0048 for agency ID 9700 shows 5 actions in the last full year with $1.45 billion obligated.

This award page summarizes procurement activity for award number FA863423F0048 under agency ID 9700 during the last full year. The award recorded 5 actions and $1,446,266,344 in total obligations, for an average action value of $289,253,268.80.

Generated at 03/20/2026

Analysis period: Last full year

Totals reflect the provided analysis window and may differ from other reporting views that use different timing or aggregation rules.

Agency ID
9700
PIID
FA863423F0048
Type
Award
Total Obligated
1.45 billion
1,446,266,344.00
Actions
5
Average Action Value
289,253,268.80

Overview

The award number FA863423F0048 is associated with agency ID 9700 and shows obligation activity in the last full year. Across 5 actions, total obligated dollars reached $1,446,266,344, with an average action value of $289,253,268.80.

How to use this page

Use this page to review award-level obligation volume, action count, and average action value for FA863423F0048. It supports quick comparison across awards and helps identify the scale of activity captured in the selected reporting period.

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 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
5700 DEPT OF THE AIR FORCE 1,446,266,344.00 1.45 billion 5

Insight

Over the past year, obligations for PIID FA863423F0048 are fully concentrated in a single top agency, the DEPT OF THE AIR FORCE (agency ID 5700). This agency accounts for 5 awards totaling 1.45 billion in obligated value. The distribution indicates a narrow funding concentration with no other agencies appearing in the provided rows.

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 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 1,446,266,344.00 1.45 billion 5

Insight

Within the 1-year window for award FA863423F0048, obligations are fully concentrated with a single vendor, BOEING COMPANY, THE (CAGE 76301), totaling $1.45 billion across 5 awards. This indicates a highly concentrated vendor distribution with no evidence of broader vendor participation in the provided data. The award pattern suggests sustained reliance on one prime contractor for this action.

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 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
336411 AIRCRAFT MANUFACTURING 1,446,266,344.00 1.45 billion 5

Insight

Obligations for PIID FA863423F0048 over the 1-year window are fully concentrated in NAICS 336411, Aircraft Manufacturing. This code accounts for the entire reported total obligated amount of 1.45 billion across 5 awards, indicating a highly concentrated procurement profile with no visible NAICS diversification 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 = 'FA863423F0048'
    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
1510 AIRCRAFT, FIXED WING 1,446,266,344.00 1.45 billion 5

Insight

Obligations for this award are fully concentrated in PSC 1510, Aircraft, Fixed Wing. Over the 1-year window, 5 awards account for $1.45 billion in total obligated value under this PSC, indicating a narrow product mix and high concentration in fixed-wing aircraft procurement. This pattern suggests the award is not materially diversified across PSCs in the period reviewed.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 1,446,266,344.00 1.45 billion 5

Insight

For PIID FA863423F0048 within Agency ID 9700, the 1-year annual trend is concentrated in a single year: FY2025. All reported obligation in the window is $1.45 billion across 5 awards, indicating a highly concentrated distribution with substantial average obligation per award. With no other years reported, no multi-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.