Award Number

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

Award number FA861517C6047 for agency 9700 shows last full year obligation and action activity for this federal procurement record.

This award record covers the last full year of activity for PIID FA861517C6047 under agency 9700. It includes 37 award actions with total obligations of $57.05 million.

Generated at 03/20/2026

Analysis period: Last full year

Total obligated is shown as $57,054,355.35, and the average action value is $1,542,009.60.

Agency ID
9700
PIID
FA861517C6047
Type
Award
Total Obligated
57.05 million
57,054,355.35
Actions
37
Average Action Value
1,542,009.60

Overview

The award number FA861517C6047 page summarizes federal procurement activity for agency 9700 during the last full year. Across 37 award actions, the record totals $57,054,355.35 in obligated value, averaging $1,542,009.60 per action.

How to use this page

Use this page to review obligation totals, action count, and average action value for the award. It is suited to quick analysis of activity level within the selected analysis window without adding detail beyond the reported figures.

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 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 57,054,355.35 57.05 million 37

Insight

Within the 1-year window for award FA861517C6047, obligations are fully concentrated in a single top agency: the Department of the Air Force (Agency ID 5700). It accounts for $57.05 million across 37 awards, indicating all visible activity in this section is tied to one agency with no diversification among other agencies. This suggests a high degree of agency concentration for the award during the period reviewed.

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 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
NORTHROP GRUMMAN SYSTEMS CORPORATION 15055 57,054,355.35 57.05 million 37

Insight

Obligations under PIID FA861517C6047 in the 1-year window are fully concentrated with NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 15055), which accounts for 57.05 million across 37 awards. This indicates a highly concentrated vendor distribution with all reported obligated value assigned to a single supplier. The award activity suggests repeated obligation to the same vendor rather than a broad supplier base.

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 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
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 57,054,355.35 57.05 million 37

Insight

Obligations for PIID FA861517C6047 over the 1-year window are fully concentrated in NAICS 334511, with 37 awards totaling $57.05 million. This indicates a narrow industrial base for this award, with all observed obligations assigned to a single manufacturing category. The concentration suggests limited NAICS diversification in the reported 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 = 'FA861517C6047'
    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
5841 RADAR EQUIPMENT, AIRBORNE 57,054,355.35 57.05 million 37

Insight

Obligations for this award are fully concentrated in PSC 5841, Radar Equipment, Airborne, which accounts for $57.05 million across 37 awards in the 1-year window. This indicates a focused procurement profile with no diversification across other PSCs in the provided data. The repeated award activity suggests sustained spending within the same product category rather than a one-time obligation event.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 57,054,355.35 57.05 million 37

Insight

In FY 2025, this award recorded $57.05 million in total obligated amount across 37 actions. Obligations are fully concentrated in a single year within the 1-year window, so no multi-year distribution or year-over-year trend can be assessed from the provided data. The average obligated amount per action is approximately $1.54 million, indicating moderate action-level dispersion within the award year.

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.