Award Number

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

Award number FA862524F3034 for agency 9700 shows 4 recorded actions over the last 5 years with 1.56 billion obligated.

This award record summarizes obligation activity tied to PIID FA862524F3034 within agency ID 9700. The analysis window covers the last 5 years and includes 4 award actions totaling 1,564,462,687 in obligations.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the provided readable and exact obligated amounts for the last 5 years and may differ by rounding in display.

Agency ID
9700
PIID
FA862524F3034
Type
Award
Total Obligated
1.56 billion
1,564,462,687.00
Actions
4
Average Action Value
391,115,671.75

Overview

The award number FA862524F3034 is associated with agency ID 9700 and shows 4 actions in the selected 5-year window. Total obligated funding is 1,564,462,687, with an average action value of 391,115,671.75. This view is limited to the data provided for the award record.

How to use this page

Use this page to review obligation volume and action count for award number FA862524F3034. The figures can support quick comparisons across awards, trend checks within the 5-year window, and basic procurement analysis by agency ID.

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 = 'FA862524F3034'
    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 1,564,462,687.00 1.56 billion 4

Insight

Within the 5-year window for PIID FA862524F3034, all reported obligation is concentrated under the DEPT OF THE AIR FORCE (agency ID 5700), totaling $1.56 billion across 4 awards. This indicates a highly concentrated obligation pattern with no diversification across other agencies in the provided results. The small award count relative to the obligated amount suggests a limited number of high-value actions within the period.

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 = 'FA862524F3034'
        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 CORPORATION 98897 1,564,462,687.00 1.56 billion 4

Insight

Over the 5-year window for award PIID FA862524F3034 under agency 9700, obligated funding is fully concentrated with a single vendor: LOCKHEED MARTIN CORPORATION (CAGE 98897). This vendor received 4 awards totaling $1.56 billion, indicating a highly concentrated obligation pattern with no diversification across other vendors in the provided 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 = 'FA862524F3034'
    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
336411 AIRCRAFT MANUFACTURING 1,564,462,687.00 1.56 billion 4

Insight

Over the 5-year window for award FA862524F3034, obligations are fully concentrated in NAICS 336411, Aircraft Manufacturing. The single reported NAICS accounts for 4 awards totaling $1.56 billion, indicating a narrow industrial base and no observed diversification across other NAICS codes in the provided data. This concentration suggests the award activity is tied to a specialized aircraft manufacturing requirement.

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 = 'FA862524F3034'
    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
1510 AIRCRAFT, FIXED WING 1,564,462,687.00 1.56 billion 4

Insight

Obligations for this award are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $1.56 billion across 4 awards. This indicates a highly focused procurement profile with no evidence of PSC diversification in the provided results. The small award count relative to total obligated value suggests a limited number of large-value actions drove the activity in the 5-year window.

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 = 'FA862524F3034'
    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
2023 42,000,000.00 42.00 million 1
2025 1,522,462,687.00 1.52 billion 3

Insight

Obligations for PIID FA862524F3034 are concentrated in 2025, which accounts for $1.52 billion across 3 awards, compared with $42.0 million across 1 award in 2023. This indicates a sharp increase in both obligated value and award count over the 5-year window, with activity concentrated in the later year provided. The limited row set suggests a lumpy funding pattern rather than a steady annual distribution.

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.