This page presents procurement activity for award number FA861517C6047 for agency ID 9700 across the last 5 years. The award shows 142 actions with total obligated dollars of 1,165,198,431.03, for an average action value of 8,205,622.75.
Award Number
Award Number 9700 / FA861517C6047 Federal Contract Action Summary (Last 5 Years)
FPDS award page for award number FA861517C6047 under agency ID 9700, summarizing obligations and actions over the last 5 years.
Values shown are based on the provided analysis window and may reflect rounding in the readable total.
Overview
Award number FA861517C6047 is associated with agency ID 9700 and shows sustained procurement activity in the last 5 years. The record includes 142 award actions and total obligated funding of 1,165,198,431.03. The average action value is 8,205,622.75, indicating a high-dollar award history across the period.
How to use this page
Use this page to review obligation levels and action volume tied to award number FA861517C6047. It is suitable for quick FPDS reference, comparing this award with other procurement records, or tracking activity over the stated 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 = 'FA861517C6047'
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,165,198,431.03 | 1.17 billion | 142 |
Insight
Within the 5-year window for award PIID FA861517C6047, obligations are fully concentrated under DEPT OF THE AIR FORCE (agency ID 5700). This agency accounts for $1.17 billion across 142 awards, indicating a highly concentrated award distribution with no other agencies represented in the provided data.
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 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 |
|---|---|---|---|---|
| NORTHROP GRUMMAN SYSTEMS CORPORATION | 15055 | 1,165,198,431.03 | 1.17 billion | 142 |
Insight
Over the 5-year window, obligations for award FA861517C6047 are entirely concentrated with NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 15055), which received $1.17 billion across 142 awards. This indicates a highly concentrated vendor distribution, with no other vendors represented in the provided rows. The pattern suggests sustained reliance on a single incumbent supplier for this award.
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 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 |
|---|---|---|---|---|
| 334511 | SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING | 1,165,198,431.03 | 1.17 billion | 142 |
Insight
Obligations for PIID FA861517C6047 are fully concentrated in NAICS 334511, Search, Detection, Navigation, Guidance, Aeronautical, and Nautical System and Instrument Manufacturing, with $1.17 billion across 142 awards over the 5-year window. This indicates a highly concentrated activity profile within a single NAICS category, rather than a diversified distribution across multiple industries.
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 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 |
|---|---|---|---|---|
| 5841 | RADAR EQUIPMENT, AIRBORNE | 1,165,198,431.03 | 1.17 billion | 142 |
Insight
Obligations for PIID FA861517C6047 are fully concentrated in PSC 5841, Radar Equipment, Airborne, totaling $1.17 billion across 142 awards over the past 5 years. This indicates a highly focused procurement profile with no observable diversification across other PSCs in the provided data. The award history is consistent with sustained investment in a single equipment category rather than a broad mix of supplies or services.
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 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 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 declined steadily over the five-year window, falling from $474.09 million in 2021 to $57.05 million in 2025, an overall reduction of about 88 percent. Award count increased from 17 in 2021 to 32 in 2022, then remained relatively high at 19 to 37 awards per year through 2025, indicating a shift toward smaller, more frequent obligations rather than a few large awards. The highest obligation concentration occurred in 2021, while 2024 and 2025 reflect materially lower annual funding levels despite sustained award activity.
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.