Award Number

Award Number 9700 / FA283424CB002 Federal Contract Action Summary (Last 10 Years)

Award number FA283424CB002 is an award-level procurement record for agency 9700, showing obligation activity over the last 10 years.

This page summarizes federal procurement data for award number FA283424CB002. The record shows 24 award actions with total obligated amounts of 2.57 billion across the analysis window.

Generated at 03/20/2026

Analysis period: Last 10 years

Amounts shown here are based on the provided obligated totals and action counts for the last 10 years.

Agency ID
9700
PIID
FA283424CB002
Type
Award
Total Obligated
2.57 billion
2,567,126,630.95
Actions
24
Average Action Value
106,963,609.62

Overview

The award record for FA283424CB002 reflects 24 actions in the last 10 years, with total obligated spending of 2,567,126,630.95. The average action value is 106,963,609.62, indicating substantial dollar movement across the action history. This page is limited to the provided award identifier and obligation metrics for agency 9700.

How to use this page

Use this page to review the scale and cadence of obligations tied to award number FA283424CB002. The action count and average action value help frame how the award's obligated amount is distributed across recorded actions. For detailed transaction review, compare this summary with the underlying award actions in the same 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 = 'FA283424CB002'
    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,567,126,630.95 2.57 billion 24

Insight

For PIID FA283424CB002 over the 10-year window, all reported obligation activity is concentrated in a single top agency: the Department of the Air Force (agency 5700). It accounts for $2.57 billion across 24 awards, indicating a highly concentrated award pattern with no other agencies represented in the provided rows. This suggests the award’s obligation history is driven entirely by Air Force activity within the observed period.

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 = 'FA283424CB002'
        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
SIERRA NEVADA COMPANY, LLC 4EXW5 2,567,126,630.95 2.57 billion 24

Insight

SIERRA NEVADA COMPANY, LLC is the sole top vendor identified for PIID FA283424CB002 over the 10-year window, with 24 awards totaling $2.57 billion. This indicates a highly concentrated vendor base for this award, with all listed obligation activity attributed to one contractor. The distribution suggests sustained reliance on a single vendor rather than a broad spread of obligated spending across multiple firms.

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 = 'FA283424CB002'
    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,567,126,630.95 2.57 billion 24

Insight

Obligations for PIID FA283424CB002 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $2.57 billion across 24 awards over the 10-year window. This indicates a highly concentrated procurement profile with no diversification across other NAICS codes in the provided data. The award activity reflects sustained procurement in a single industry category rather than a broad distribution of obligations.

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 = 'FA283424CB002'
    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,567,126,630.95 2.57 billion 24

Insight

Obligations for PIID FA283424CB002 over the 10-year window are entirely concentrated in PSC 1510, Aircraft, Fixed Wing. This PSC accounts for $2.57 billion across 24 awards, indicating a highly focused spending profile with no diversification across other product or service categories in the provided data.

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 = 'FA283424CB002'
    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
2024 927,533,000.00 927.53 million 8
2025 1,639,593,630.95 1.64 billion 16

Insight

Obligations increased from $927.53 million across 8 awards in 2024 to $1.64 billion across 16 awards in 2025, nearly doubling both dollars and award count. This indicates a broader and larger award distribution in 2025 versus 2024, with activity concentrated in both years rather than spread across multiple years in the 10-year window provided. The pattern suggests a significant year-over-year expansion in obligated value and transaction volume for this award.

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.