Award Number

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

Federal procurement analysis for award number FA867521C0034 under agency ID 9700, covering the last 10 years of obligation and action activity.

This page summarizes award number FA867521C0034 for agency ID 9700 over the last 10 years. The award shows total obligated spending of $2.18 billion across 107 recorded actions.

Generated at 03/20/2026

Analysis period: Last 10 years

Values reflect the provided analysis window and may differ from broader FPDS reporting depending on filters and updates.

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

For the last 10 years, award number FA867521C0034 under agency ID 9700 accounts for $2,177,484,015.51 in total obligated value. The award has 107 actions, which produces an average action value of $20,350,317.90. This page is focused on the award identifier and the obligation history tied to that record.

How to use this page

Use this page to review how obligation value and action activity are concentrated within a single award record. The total obligated figure, exact value, action count, and average action value provide a concise basis for comparing this award against other FPDS records using the same filters.

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 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,177,484,015.51 2.18 billion 87
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 20

Insight

Award activity under PIID FA867521C0034 is highly concentrated within the Department of the Air Force, which accounts for $2.18 billion across 87 awards over the 10-year window. Defense Contract Management Agency (DCMA) appears with 20 awards but no recorded obligated amount, indicating administrative or oversight involvement rather than funding concentration. Overall, obligated dollars are overwhelmingly associated with a single agency, with limited distribution across the remaining listed agency.

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

Insight

RAYTHEON COMPANY accounts for all reported obligations in this 10-year award window for PIID FA867521C0034, with $2.18 billion across 107 awards. This indicates complete vendor concentration in the queried results, with no evidence of distribution across additional top vendors in the provided rows. The award volume suggests repeated obligation activity to a single contractor over the period.

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

Insight

Over the 10-year window, this award is entirely concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. The single listed NAICS accounts for $2.18 billion across 107 awards, indicating a sustained procurement pattern within a highly specialized industrial category. No distribution across additional NAICS codes is evident from 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 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
1410 GUIDED MISSILES 2,177,484,015.51 2.18 billion 107

Insight

Over the 10-year window for award FA867521C0034, obligations are fully concentrated in PSC 1410, Guided Missiles, with $2.18 billion obligated across 107 awards. This indicates a highly focused procurement profile with no visible PSC diversification in the provided data. The award activity is distributed across a relatively large number of actions, but all within the same PSC category.

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 10 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 under PIID FA867521C0034 were heavily concentrated in 2021 and 2022, at 1.12 billion and 1.03 billion respectively, accounting for nearly all activity in the provided 10-year window. Activity then dropped sharply in 2023 through 2025, with obligations falling to 14.81 million in 2023, 1.55 million in 2024, and 10.05 million in 2025. Award counts remained relatively stable, ranging from 19 to 25 per year, indicating that the decline in obligated dollars reflects much smaller average award values rather than fewer awards overall.

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.