Award Number

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

Award number FA867521C0034 for agency 9700 shows 25 recorded actions in the last full year and $10.05 million in total obligations.

This page summarizes procurement activity for award number FA867521C0034 at agency 9700 over the last full year. The award includes 25 actions and $10,050,090.51 in obligated value.

Generated at 03/20/2026

Analysis period: Last full year

All values reflect the stated analysis window and use the exact obligated total of $10,050,090.51, which rounds to $10.05 million.

Agency ID
9700
PIID
FA867521C0034
Type
Award
Total Obligated
10.05 million
10,050,090.51
Actions
25
Average Action Value
402,003.62

Overview

In the last full year, award number FA867521C0034 recorded 25 actions and $10,050,090.51 in total obligations. The average action value was $402,003.62, providing a simple measure of the award's recorded activity across the period.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for agency 9700. The figures support basic trend checks and comparison with other awards 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 = 'FA867521C0034'
    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 10,050,090.51 10.05 million 20
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 5

Insight

Obligations for this award are concentrated in the DEPT OF THE AIR FORCE, which accounts for $10.05 million across 20 awards in the 1-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears with 5 awards but no obligated dollars, indicating administrative activity without recorded funding in this period. Overall, the obligation profile is heavily concentrated in 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 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
RAYTHEON COMPANY 15090 10,050,090.51 10.05 million 25

Insight

RAYTHEON COMPANY is the sole top vendor in this 1-year window for PIID FA867521C0034, accounting for $10.05 million across 25 awards. This indicates a highly concentrated vendor distribution, with all observed obligations in the provided data tied to a single contractor. The pattern suggests repeated award activity to one vendor rather than a dispersed obligation base.

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 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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 10,050,090.51 10.05 million 25

Insight

For PIID FA867521C0034 over the trailing 1 year, obligations are entirely concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This NAICS accounts for $10.05 million across 25 awards, indicating a highly focused award profile with no visible diversification across other industry categories in the provided data. The distribution suggests the award activity is concentrated in a single aerospace/defense manufacturing sector.

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 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
1410 GUIDED MISSILES 10,050,090.51 10.05 million 25

Insight

Obligations for PIID FA867521C0034 over the 1-year window are fully concentrated in PSC 1410, Guided Missiles, with $10.05 million obligated across 25 awards. This indicates a narrow product mix and a high degree of procurement concentration within the reported period. No other PSCs are provided for comparison in this view.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 10,050,090.51 10.05 million 25

Insight

For PIID FA867521C0034, all reported obligations in the 1-year window are concentrated in FY 2025, totaling $10.05 million across 25 awards. This indicates the activity is fully concentrated in a single fiscal year within the available period, with no year-over-year distribution evident from the provided data. The average obligation per award is approximately $402.0 thousand, suggesting a moderate degree of fragmentation across multiple actions rather than reliance on a small number of large awards.

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.