Award Number

Award Number 9700 / FA867521C0034 Federal Contract Action Summary (Last 5 Years)

FPDS award page for award number FA867521C0034 under agency ID 9700, showing obligation and action activity over the last 5 years.

This page summarizes award number FA867521C0034 for agency ID 9700 across the last 5 years. The record shows 107 award actions with total obligated amounts of 2.18 billion dollars.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals on this page reflect the provided analysis window and include a readable total obligated amount of 2,177,484,015.51 and an average action value of 20,350,317.9.

Agency ID
9700
PIID
FA867521C0034
Type
Award
Total Obligated
2.18 billion
2,177,484,015.51
Actions
107
Average Action Value
20,350,317.90

Overview

In the last 5 years, award number FA867521C0034 under agency ID 9700 accumulated 107 award actions and 2,177,484,015.51 in total obligated dollars. The average action value across the period is 20,350,317.9. These figures describe the award activity shown in the provided analysis window.

How to use this page

Use this page to review obligation levels and action frequency for award number FA867521C0034. The totals support a quick assessment of overall award activity, while the action count and average action value provide context for how the obligation amount was distributed across the 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 = 'FA867521C0034'
    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 2,177,484,015.51 2.18 billion 87
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 20

Insight

Award activity is highly concentrated with the DEPT OF THE AIR FORCE, which accounts for $2.18 billion across 87 awards in the 5-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears with 20 awards but zero obligated dollars, indicating administrative or oversight activity rather than funding concentration. Overall, obligated value is concentrated in a single agency, while award count is split across two agencies.

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 = 'FA867521C0034'
        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
RAYTHEON COMPANY 15090 2,177,484,015.51 2.18 billion 107

Insight

Within the 5-year window for award PIID FA867521C0034 under agency 9700, obligations are fully concentrated with a single vendor: RAYTHEON COMPANY (CAGE 15090). The vendor received $2.18 billion across 107 awards, indicating sustained award activity and a high degree of vendor concentration for this PIID. No other vendors are present in the provided rows, so the observed distribution is entirely single-source within the reported data.

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 = 'FA867521C0034'
    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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 2,177,484,015.51 2.18 billion 107

Insight

Over the past 5 years, obligations for PIID FA867521C0034 under agency 9700 are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This NAICS accounts for $2.18 billion across 107 awards, indicating a highly focused procurement profile with no diversification across other industry codes 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 = 'FA867521C0034'
    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
1410 GUIDED MISSILES 2,177,484,015.51 2.18 billion 107

Insight

Obligations under PIID FA867521C0034 are fully concentrated in PSC 1410, Guided Missiles, with $2.18 billion obligated across 107 awards over the 5-year window. This indicates a highly focused award profile with no diversification across other PSCs in the provided data. The volume of awards suggests repeated procurement activity within the same product category rather than broad spending distribution.

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 = 'FA867521C0034'
    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
2021 1,122,393,528.00 1.12 billion 19
2022 1,028,685,850.00 1.03 billion 24
2023 14,808,880.00 14.81 million 19
2024 1,545,667.00 1.55 million 20
2025 10,050,090.51 10.05 million 25

Insight

Obligations for PIID FA867521C0034 were heavily concentrated in 2021 and 2022, totaling $1.12 billion and $1.03 billion, respectively, with 19 and 24 awards. Funding then declined sharply in 2023 to $14.81 million and in 2024 to $1.55 million, indicating a marked reduction in annual obligated value. In 2025, obligations increased to $10.05 million across 25 awards, but remained well below the 2021–2022 level.

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.