Award Number

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

FPDS award page for award number FA861120F1010 under agency ID 9700, summarizing last full year obligations and action activity.

This page presents procurement activity for award number FA861120F1010 during the last full year. The award shows 7 actions and total obligated amount of 1.60 million, with an exact total of 1,598,820.53.

Generated at 03/20/2026

Analysis period: Last full year

Totals are based on the reported last full year analysis window and may differ from rounded display values.

Agency ID
9700
PIID
FA861120F1010
Type
Award
Total Obligated
1.60 million
1,598,820.53
Actions
7
Average Action Value
228,402.93

Overview

In the last full year, award FA861120F1010 recorded 7 award actions and total obligations of 1,598,820.53. The average action value was 228,402.93, reflecting the reported mix of activity across the analysis window.

How to use this page

Use this page to review year-level award activity for FA861120F1010 and compare its obligation total with other awards in agency ID 9700. The action count and average action value provide a concise view of how obligation volume was distributed over the period.

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 = 'FA861120F1010'
    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 1,598,820.53 1.60 million 7

Insight

Over the past 1 year, obligations for PIID FA861120F1010 are concentrated entirely in one top agency: the Department of the Air Force, which accounts for $1.60 million across 7 awards. This indicates a highly concentrated distribution of activity with no visible evidence of agency diversification in the provided rows.

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 = 'FA861120F1010'
        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
UNITED TECHNOLOGIES CORPORATION 52661 1,598,820.53 1.60 million 7

Insight

For FA861120F1010 over the last year, obligated dollars are fully concentrated with a single vendor, UNITED TECHNOLOGIES CORPORATION (CAGE 52661). This vendor received 7 awards totaling $1.60 million, indicating all observed obligations in this window are distributed to one supplier rather than spread across multiple vendors. The concentration suggests limited vendor diversification for this award during the period reviewed.

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 = 'FA861120F1010'
    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
488190 OTHER SUPPORT ACTIVITIES FOR AIR TRANSPORTATION 1,598,820.53 1.60 million 7

Insight

Obligations for PIID FA861120F1010 over the past year are fully concentrated in NAICS 488190, Other Support Activities for Air Transportation, with $1.60 million across 7 awards. This indicates a narrow industry footprint for the award during the period, with no other NAICS codes represented in the provided results. The distribution suggests the award activity is consistently tied to a single support-services category rather than being spread across multiple sectors.

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 = 'FA861120F1010'
    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
J028 MAINT/REPAIR/REBUILD OF EQUIPMENT- ENGINES, TURBINES, AND COMPONENTS 1,598,820.53 1.60 million 7

Insight

Obligations are fully concentrated in PSC J028, “Maintenance/Repair/Rebuild of Equipment - Engines, Turbines, and Components,” totaling $1.60 million across 7 awards over the past year. This indicates a narrow spend profile for the award, with all recorded obligation activity falling within a single product/service category. The pattern suggests recurring requirement coverage rather than diversification across PSCs.

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 = 'FA861120F1010'
    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 1,598,820.53 1.60 million 7

Insight

For PIID FA861120F1010 over the 1-year window, obligations are concentrated in a single year: 2025 accounts for the full reported total of $1.60 million across 7 awards. This indicates activity was entirely captured in one annual period, with no multi-year distribution in the provided data. The pattern suggests a relatively concentrated obligation profile for the award during the period reviewed.

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.