Award Number

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

Procurement award page for award number FA283424CB002 under agency ID 9700, showing last full year obligation and action activity.

This page summarizes federal award activity for award number FA283424CB002 in agency ID 9700 over the last full year. The award shows 16 actions with total obligated value of $1,639,593,630.95, or about $1.64 billion.

Generated at 03/20/2026

Analysis period: Last full year

Average action value across the 16 actions was $102,474,601.93, based on the provided obligated total.

Agency ID
9700
PIID
FA283424CB002
Type
Award
Total Obligated
1.64 billion
1,639,593,630.95
Actions
16
Average Action Value
102,474,601.93

Overview

The award record for FA283424CB002 reflects 16 actions during the last full year. Total obligated value across those actions was $1,639,593,630.95, with an average action value of $102,474,601.93.

How to use this page

Use this page to review award-level obligation activity for FA283424CB002 within agency ID 9700. The figures on this page are limited to the provided analysis window and summarize total and average obligated values for the award.

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 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,639,593,630.95 1.64 billion 16

Insight

Within the 1-year window for PIID FA283424CB002, the top agency is DEPT OF THE AIR FORCE, accounting for the full identified obligation in this view: $1.64 billion across 16 awards. This indicates a highly concentrated distribution with no other agencies appearing in the provided rows. The award activity is therefore entirely driven by a single agency relationship in the current dataset.

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 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
SIERRA NEVADA COMPANY, LLC 4EXW5 1,639,593,630.95 1.64 billion 16

Insight

SIERRA NEVADA COMPANY, LLC is the sole top vendor for PIID FA283424CB002 over the 1-year window, accounting for $1.64 billion across 16 awards. Obligation is fully concentrated in a single vendor, indicating a highly concentrated award distribution for this entity in the period reviewed. This pattern suggests sustained reliance on the same contractor rather than broad vendor dispersion.

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 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,639,593,630.95 1.64 billion 16

Insight

Obligations for PIID FA283424CB002 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $1.64 billion obligated across 16 awards in the 1-year window. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The concentration suggests the award activity is tied to a single industry category, limiting distribution 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 = 'FA283424CB002'
    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,639,593,630.95 1.64 billion 16

Insight

Obligations for PIID FA283424CB002 are concentrated entirely in PSC 1510, Aircraft, Fixed Wing, with $1.64 billion obligated across 16 awards in the 1-year window. This indicates a highly focused procurement profile with no diversification across PSCs in the provided data. The award mix suggests sustained emphasis on fixed-wing aircraft acquisitions or related support under this PIID.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 1,639,593,630.95 1.64 billion 16

Insight

Over the 1-year window, award FA283424CB002 under Agency 9700 shows all recorded obligation activity in FY 2025, totaling 1.64 billion across 16 awards. This indicates a highly concentrated annual pattern, with obligations distributed across a relatively small number of awards rather than a broad spread over multiple years. The absence of additional years in the window means no year-over-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.