Award Number

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

FPDS award page for award number FA910115C0500 under agency ID 9700, summarizing obligations and actions over the last 5 years.

This page presents procurement activity for award number FA910115C0500 within agency ID 9700 across the last 5 years. The record shows 142 award actions and total obligated funding of 1,204,356,896.11.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the provided analysis window and may differ from other reporting views that use different filters or timing.

Agency ID
9700
PIID
FA910115C0500
Type
Award
Total Obligated
1.20 billion
1,204,356,896.11
Actions
142
Average Action Value
8,481,386.59

Overview

Over the last 5 years, award number FA910115C0500 accumulated 142 actions with total obligated funding of 1,204,356,896.11. The average action value was 8,481,386.59, which indicates substantial funding movement across the action history. This page is centered on the award identifier and the reported totals for agency ID 9700.

How to use this page

Use this page to review the award-level obligation pattern, action count, and average action value tied to FA910115C0500. It is useful for quickly checking the scale of the award and comparing it with other award records under the same 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 = 'FA910115C0500'
    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,204,356,896.11 1.20 billion 142

Insight

Obligations for PIID FA910115C0500 are fully concentrated in a single top awarding agency: the Department of the Air Force. Over the 5-year window, this agency accounts for $1.20 billion across 142 awards, indicating all reported award activity is concentrated within one 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 = 'FA910115C0500'
        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
NATIONAL AEROSPACE SOLUTIONS, LLC 77SY4 1,204,356,896.11 1.20 billion 142

Insight

Over the past 5 years, obligations under PIID FA910115C0500 are fully concentrated with NATIONAL AEROSPACE SOLUTIONS, LLC (CAGE 77SY4). The vendor received 142 awards totaling $1.20 billion, indicating a highly concentrated award pattern with no evidence of distribution among other vendors in this section.

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 = 'FA910115C0500'
    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
541330 ENGINEERING SERVICES 1,204,356,896.11 1.20 billion 142

Insight

Over the 5-year window for award FA910115C0500, obligations are fully concentrated in NAICS 541330, Engineering Services, with $1.20 billion across 142 awards. This indicates a highly focused procurement profile with no visible diversification across other NAICS codes in the provided data. The volume of awards suggests recurring use of the same professional services category rather than isolated activity.

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 = 'FA910115C0500'
    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
AZ16 R&D- OTHER RESEARCH AND DEVELOPMENT (MANAGEMENT/SUPPORT) 1,204,356,896.11 1.20 billion 142

Insight

Over the past 5 years, obligations for PIID FA910115C0500 are concentrated entirely in PSC AZ16, R&D - Other Research and Development (Management/Support). The award has obligated $1.20 billion across 142 actions under this single PSC, indicating a highly concentrated procurement profile with no other PSCs represented in the provided data. This pattern suggests the award’s activity has been consistently tied to management/support R&D services rather than a distributed mix of product or service categories.

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 = 'FA910115C0500'
    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
2021 286,417,364.95 286.42 million 37
2022 292,550,839.87 292.55 million 34
2023 464,700,831.00 464.70 million 37
2024 172,491,589.59 172.49 million 25
2025 -11,803,729.30 -11.80 million 9

Insight

Obligations for PIID FA910115C0500 were concentrated in 2023, when annual obligated value peaked at $464.70 million across 37 awards, well above the surrounding years. Activity remained comparatively high in 2021 and 2022 at $286.42 million and $292.55 million, then declined sharply in 2024 to $172.49 million with 25 awards. In 2025, obligations were negative ($11.80 million) across 9 awards, indicating downward net activity in the current year window.

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.