Award Number

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

Procurement profile for award number FA821413C0001 under agency ID 9700, covering the last 10 years of recorded action history.

This page summarizes federal procurement activity for award number FA821413C0001 under agency ID 9700 over the last 10 years. The record shows 745 award actions with total obligations of 2.01 billion, equal to 2,007,118,979.81 in exact dollars.

Generated at 03/20/2026

Analysis period: Last 10 years

Financial totals reflect the readable and exact obligated amounts reported for the selected analysis window.

Agency ID
9700
PIID
FA821413C0001
Type
Award
Total Obligated
2.01 billion
2,007,118,979.81
Actions
745
Average Action Value
2,694,119.44

Overview

Over the last 10 years, award number FA821413C0001 has recorded 745 actions and 2,007,118,979.81 in total obligations. The average action value is 2,694,119.44, which indicates a large and recurring obligation pattern across the analysis window.

How to use this page

Use this page to review the size and activity level of the award at the agency level for ID 9700. The action count, total obligated amount, and average action value support basic procurement analysis and cross-checking against related FPDS records.

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 = 'FA821413C0001'
    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,007,475,545.18 2.01 billion 743
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -356,565.37 -356.57 thousand 2

Insight

Obligations are highly concentrated with the Department of the Air Force, which accounts for 2.01 billion across 743 awards. DCMA represents a negligible share of activity, with 2 awards and a small negative obligated total of 356.57 thousand, indicating minor deobligation or adjustment activity. Overall, the award history for PIID FA821413C0001 is overwhelmingly driven by a single agency relationship.

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 = 'FA821413C0001'
        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
BAE SYSTEMS TECHNOLOGY SOLUTIONS & SERVICES INC. 99789 1,870,928,991.81 1.87 billion 669
BAE SYSTEMS TECHNOLOGY SOLUTIONS & SERVICES INC. 136,189,988.00 136.19 million 76

Insight

Obligations are highly concentrated with BAE Systems Technology Solutions & Services Inc., which appears in both rows and accounts for the vast majority of activity in this 10-year window. The CAGE-coded entry (99789) reflects 669 awards totaling $1.87 billion, while the separate uncoded entry shows 76 awards totaling $136.19 million. This pattern suggests sustained, repeated obligation activity to the same vendor, with a smaller portion recorded without a CAGE code.

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 = 'FA821413C0001'
    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
541330 ENGINEERING SERVICES 2,007,118,979.81 2.01 billion 745

Insight

Over the 10-year window, obligations for PIID FA821413C0001 are fully concentrated in NAICS 541330, Engineering Services. The single NAICS entry accounts for $2.01 billion across 745 awards, indicating a highly focused procurement profile rather than a diversified industry mix. This concentration suggests the award’s obligated spending has been consistently tied to engineering services over time.

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 = 'FA821413C0001'
    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
L014 TECHNICAL REPRESENTATIVE- GUIDED MISSILES 2,007,118,979.81 2.01 billion 745

Insight

Obligations are highly concentrated in PSC L014, Technical Representative - Guided Missiles, with $2.01 billion across 745 awards over the 10-year window. This indicates sustained use of this PSC for the award set, with funding distributed across a relatively large number of actions rather than a single award. The concentration suggests this PSC is the dominant driver of obligated dollars for 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 = 'FA821413C0001'
    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
2016 130,774,722.00 130.77 million 73
2017 103,076,979.00 103.08 million 75
2018 192,449,755.15 192.45 million 86
2019 113,461,558.27 113.46 million 99
2020 170,712,594.43 170.71 million 91
2021 151,915,112.47 151.92 million 74
2022 188,999,979.26 189.00 million 65
2023 318,978,185.48 318.98 million 61
2024 249,248,465.31 249.25 million 58
2025 387,501,628.44 387.50 million 63

Insight

Obligations for PIID FA821413C0001 were sustained across 2016–2025, ranging from $103.08 million in 2017 to $387.50 million in 2025. Annual award count was comparatively stable but trended downward after 2019, peaking at 99 awards in 2019 and declining to the high-50s/low-60s in 2022–2025. The value profile became more concentrated in later years, with 2023, 2024, and 2025 accounting for the highest obligation levels in the period despite fewer 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.