Award Number

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

Federal procurement summary for award number FA868224CB001 showing obligation activity for Agency ID 9700 over the last 5 years.

This page summarizes award number FA868224CB001 for Agency ID 9700 across the last 5 years. The award reflects 13 actions and total obligated amounts of 5.69 billion, with an average action value of 437,366,387.86.

Generated at 03/20/2026

Analysis period: Last 5 years

Amounts shown are based on the provided analysis window and should be read as total obligated exact and readable values for this award.

Agency ID
9700
PIID
FA868224CB001
Type
Award
Total Obligated
5.69 billion
5,685,763,042.22
Actions
13
Average Action Value
437,366,387.86

Overview

Award number FA868224CB001 records 13 actions in the last 5 years. Total obligated amount is 5,685,763,042.22, which is shown as 5.69 billion in readable form, and the average action value is 437,366,387.86. This provides a compact view of funding activity tied to Agency ID 9700.

How to use this page

Use this page to review the overall obligation profile for award FA868224CB001 and to compare action volume with total funding. The figures are useful for procurement analysis, award tracking, and identifying the scale of activity over the selected 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 = 'FA868224CB001'
    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 5,685,763,042.22 5.69 billion 12
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Obligations are highly concentrated in the Department of the Air Force, which accounts for 12 of 13 awards and $5.69 billion in obligated value over the 5-year window. The only other listed agency, DCMA, has one award but no obligated amount recorded, indicating minimal distribution outside the Air Force. Overall, this award is overwhelmingly associated with a single 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 = 'FA868224CB001'
        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
LOCKHEED MARTIN CORP 04939 5,685,763,042.22 5.69 billion 13

Insight

Over the 5-year window for award FA868224CB001, obligations are fully concentrated with a single vendor, LOCKHEED MARTIN CORP (CAGE 04939). The vendor received 13 awards totaling $5.69 billion, indicating a highly concentrated procurement profile with no observable distribution across additional vendors in the provided data. This level of concentration suggests the award activity is heavily dependent on one contractor.

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 = 'FA868224CB001'
    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 5,685,763,042.22 5.69 billion 13

Insight

Over the past 5 years, obligations under PIID FA868224CB001 are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This single NAICS accounts for $5.69 billion across 13 awards, indicating a highly focused procurement profile with no observed diversification across other industries 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 = 'FA868224CB001'
    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
1425 GUIDED MISSILE SYSTEMS, COMPLETE 5,685,763,042.22 5.69 billion 13

Insight

Obligations are fully concentrated in PSC 1425, Guided Missile Systems, Complete, with $5.69 billion across 13 awards over the 5-year window. This indicates a highly focused procurement profile for PIID FA868224CB001, with no evidence of category diversification in the provided data. The average obligation per award is very high, suggesting large-dollar, mission-specific acquisitions rather than broad distribution across multiple product service codes.

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 = 'FA868224CB001'
    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
2024 2,423,365,223.00 2.42 billion 2
2025 3,262,397,819.22 3.26 billion 11

Insight

Obligations increased from 2.42 billion across 2 awards in 2024 to 3.26 billion across 11 awards in 2025, indicating higher activity and a broader distribution of funding in the later year. The 2024 profile was highly concentrated, with substantial obligations carried by very few awards, while 2025 reflects both greater award volume and continued high-dollar execution.

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.