Award Number

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

Federal award record for award number FA862516C6599 under agency ID 9700, summarizing obligated amounts and action activity for the last full year.

This page presents the award-level procurement history for PIID FA862516C6599 for the last full year. The record shows 25 award actions with total obligated value of 285.82 million, or 285,819,833.28 in exact dollars.

Generated at 03/20/2026

Analysis period: Last full year

Obligation totals and averages are based on the provided analysis window and action count.

Agency ID
9700
PIID
FA862516C6599
Type
Award
Total Obligated
285.82 million
285,819,833.28
Actions
25
Average Action Value
11,432,793.33

Overview

In the last full year, award FA862516C6599 recorded 25 actions with total obligations of 285,819,833.28. The average action value was 11,432,793.33, reflecting a relatively high-dollar award history over the period.

How to use this page

Use this page to review obligation totals and action volume for award FA862516C6599. It supports award-level comparison, trend review, and identification of the scale of activity under agency ID 9700.

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 = 'FA862516C6599'
    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 285,819,833.28 285.82 million 21
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 4

Insight

Obligations for PIID FA862516C6599 are concentrated with the Department of the Air Force, which accounts for 285.82 million across 21 awards in the 1-year window. Defense Contract Management Agency records 4 awards but no obligated dollars, indicating activity without associated funding obligations in this period. Overall, the award profile is heavily concentrated in the Air Force with limited distributed value elsewhere.

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 = 'FA862516C6599'
        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
THE BOEING COMPANY 81205 285,819,833.28 285.82 million 25

Insight

Over the past 1 year for PIID FA862516C6599, obligated dollars are fully concentrated with a single vendor, THE BOEING COMPANY (CAGE 81205). Boeing accounts for $285.82 million across 25 awards, indicating a highly concentrated award distribution with no other vendors represented in the provided data. This pattern suggests procurement activity under this PIID has been dominated by one supplier.

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 = 'FA862516C6599'
    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
336411 AIRCRAFT MANUFACTURING 285,819,833.28 285.82 million 25

Insight

Obligations for PIID FA862516C6599 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $285.82 million across 25 awards over the past year. This indicates a highly specialized award profile with no observed diversification across other NAICS codes in the provided data. The volume of actions within a single NAICS suggests the obligation pattern is driven by aircraft manufacturing requirements rather than a broader procurement mix.

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 = 'FA862516C6599'
    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
1510 AIRCRAFT, FIXED WING 285,819,833.28 285.82 million 25

Insight

Obligations under PIID FA862516C6599 in the 1-year window are fully concentrated in PSC 1510, Aircraft, Fixed Wing. This PSC accounts for 25 awards and $285.82 million in total obligated value, indicating a narrow product mix with no observed distribution across other PSC categories in the provided data.

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 = 'FA862516C6599'
    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 285,819,833.28 285.82 million 25

Insight

For PIID FA862516C6599 over the 1-year window, all reported obligation activity is concentrated in FY2025. The award is associated with 25 actions totaling $285.82 million, indicating a high level of obligated value within a single fiscal year. This concentration suggests the award’s funding activity is entirely current-year and not spread across multiple years in the observed period.

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.