Award Number

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

FPDS award page for award number FA820523F0501 under agency ID 9700, showing last full year obligation and action activity.

This page summarizes award number FA820523F0501 for agency ID 9700 across the last full year. The award shows 11 actions and total obligated dollars of 909.40 million.

Generated at 03/20/2026

Analysis period: Last full year

Totals are based on the provided analysis window and reported exact obligation of 909400379.62.

Agency ID
9700
PIID
FA820523F0501
Type
Award
Total Obligated
909.40 million
909,400,379.62
Actions
11
Average Action Value
82,672,761.78

Overview

For the last full year, award number FA820523F0501 recorded 11 award actions and 909,400,379.62 in total obligations. The average action value was 82,672,761.78, which provides a simple reference point for the scale of activity across the period. This page is limited to the supplied award, agency, and obligation summary fields.

How to use this page

Use this page to review the award-level obligation total and action count for FA820523F0501 within agency ID 9700. It is suitable for quick lookup, internal reporting, and comparison with other award records using 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 = 'FA820523F0501'
    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 909,400,379.62 909.40 million 11

Insight

Within the 1-year window for PIID FA820523F0501, obligations are concentrated entirely with the DEPT OF THE AIR FORCE (Agency ID 5700). This agency accounts for $909.40 million across 11 awards, indicating a highly concentrated funding profile rather than a broad distribution across agencies.

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 = 'FA820523F0501'
        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
LOCKHEED MARTIN CORPORATION 81755 909,400,379.62 909.40 million 11

Insight

LOCKHEED MARTIN CORPORATION accounts for the full reported vendor obligations in this 1-year window for PIID FA820523F0501, with 11 awards totaling $909.40 million. This indicates a highly concentrated vendor profile, with all observed obligated dollars assigned to a single contractor. Such concentration suggests limited distribution of obligations across vendors within the queried award context.

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 = 'FA820523F0501'
    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
336411 AIRCRAFT MANUFACTURING 909,400,379.62 909.40 million 11

Insight

Obligations for PIID FA820523F0501 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $909.40 million across 11 awards in the 1-year window. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The award count suggests recurring activity within the same industrial base rather than a broad spread of suppliers or product categories.

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 = 'FA820523F0501'
    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
J016 MAINT/REPAIR/REBUILD OF EQUIPMENT- AIRCRAFT COMPONENTS AND ACCESSORIES 909,400,379.62 909.40 million 11

Insight

Obligations for this award are fully concentrated in PSC J016, which accounts for the entire reported total of $909.40 million across 11 awards. This indicates a highly focused procurement profile centered on maintenance, repair, and rebuild of aircraft components and accessories. The distribution suggests no visible PSC diversification within the reported 1-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 = 'FA820523F0501'
    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 909,400,379.62 909.40 million 11

Insight

Over the 1-year window, this award reports $909.40 million in total obligated funding across 11 awards in FY 2025, indicating very high dollar concentration within a small set of actions. The average obligated amount is materially large, suggesting the award activity is driven by a limited number of high-value obligations rather than broad 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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.