Award Number

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

Analyst summary of award FA861517C6047 for Agency ID 9700 over the last 10 years, showing 191 actions and $1.70 billion obligated.

This page summarizes federal procurement activity for award FA861517C6047 under Agency ID 9700 across the last 10 years. The award shows 191 actions and total obligations of $1,698,203,525.63.

Generated at 03/20/2026

Analysis period: Last 10 years

Values reflect the stated analysis window and include the readable total obligated of $1.70 billion, the exact obligated total of $1,698,203,525.63, and an average action value of $8,891,117.94.

Agency ID
9700
PIID
FA861517C6047
Type
Award
Total Obligated
1.70 billion
1,698,203,525.63
Actions
191
Average Action Value
8,891,117.94

Overview

Award FA861517C6047 is associated with Agency ID 9700 and shows 191 recorded actions in the last 10 years. Total obligated value is $1,698,203,525.63, which rounds to $1.70 billion for display purposes. The average action value across the period is $8,891,117.94.

How to use this page

Use this page to review award-level procurement activity, obligations, and action volume for the selected analysis window. The figures support quick comparison of overall obligated value and average action size without adding information beyond the provided record.

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 = 'FA861517C6047'
    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 1,698,203,525.63 1.70 billion 187
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 4

Insight

Obligations under PIID FA861517C6047 are highly concentrated in the DEPT OF THE AIR FORCE, which accounts for $1.70 billion across 187 awards over the 10-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears only marginally in the record, with 4 awards and no obligated dollars. This distribution indicates that the award history is overwhelmingly centered in the Air Force, with DCMA involvement limited to non-obligated actions.

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 = 'FA861517C6047'
        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
NORTHROP GRUMMAN SYSTEMS CORPORATION 15055 1,698,203,525.63 1.70 billion 191

Insight

NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 15055) accounts for the entirety of obligated dollars in this 10-year view for PIID FA861517C6047, with $1.70 billion across 191 awards. This indicates complete concentration of spend with a single vendor and no observed distribution across other vendors in the provided rows. The award volume suggests repeated contractual activity with the same contractor over the period.

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 = 'FA861517C6047'
    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
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 1,698,203,525.63 1.70 billion 191

Insight

Obligations for award FA861517C6047 over the 10-year window are fully concentrated in NAICS 334511, Search, Detection, Navigation, Guidance, Aeronautical, and Nautical System and Instrument Manufacturing. This NAICS accounts for $1.70 billion across 191 awards, indicating a high degree of industry concentration within the reported activity. No additional NAICS categories are present in the provided rows, so diversification across industries is not observed in this section.

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 = 'FA861517C6047'
    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
5841 RADAR EQUIPMENT, AIRBORNE 1,698,203,525.63 1.70 billion 191

Insight

Obligations under PIID FA861517C6047 are fully concentrated in PSC 5841, Radar Equipment, Airborne, totaling $1.70 billion across 191 awards. This indicates a highly focused procurement profile with no visible diversification across other PSCs in the provided data. The volume of awards suggests repeated obligations within the same equipment category over the 10-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 = 'FA861517C6047'
    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
2017 83,455,493.01 83.46 million 10
2018 145,129,315.41 145.13 million 14
2019 22,572,212.61 22.57 million 12
2020 281,848,073.57 281.85 million 13
2021 474,094,375.48 474.09 million 17
2022 274,844,603.01 274.84 million 32
2023 208,952,638.85 208.95 million 19
2024 150,252,458.34 150.25 million 37
2025 57,054,355.35 57.05 million 37

Insight

Obligations for PIID FA861517C6047 are concentrated in the middle of the 10-year window, with the highest funding in 2021 at $474.09 million, followed by 2022 at $274.84 million and 2020 at $281.85 million. Earlier activity was lower and more volatile, including a drop to $22.57 million in 2019 after $145.13 million in 2018. Award counts increase materially in the later years, peaking at 37 awards in both 2024 and 2025, even as obligated dollars decline to $150.25 million and $57.05 million, respectively.

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.