Award Number

Award Number 8900 / DEFE0011020 Federal Contract Action Summary (Last 5 Years)

FPDS award record for award number DEFE0011020 under agency ID 8900, showing obligation and action activity over the last 5 years.

This page summarizes federal procurement activity tied to award number DEFE0011020 for agency ID 8900 during the last 5 years. The record shows 76 award actions with total obligations of 790.57 million and an average action value of 10.40 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Total obligated exact is 790570953.6, and values are based on the last 5 years of available award activity.

Agency ID
8900
PIID
DEFE0011020
Type
Award
Total Obligated
790.57 million
790,570,953.60
Actions
76
Average Action Value
10,402,249.39

Overview

Award number DEFE0011020 is associated with agency ID 8900 and shows procurement activity within the last 5 years. The record reflects 76 actions and total obligations of 790,570,953.6, with an average action value of 10,402,249.39. These figures describe the scale of recorded obligation activity for this award.

How to use this page

Use this page to review award-level obligation totals and the count of recorded actions for DEFE0011020. The summary is useful for comparing this award against other FPDS award records or for tracking activity across the 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 = '8900' AND content__award__awardID__awardContractID__PIID = 'DEFE0011020'
    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
8900 ENERGY, DEPARTMENT OF 790,570,953.60 790.57 million 76

Insight

Within the 5-year window, all reported obligation is concentrated in a single agency, the Department of Energy, totaling $790.57 million across 76 awards. This indicates the award is fully concentrated within one agency rather than distributed across multiple agencies. The volume of awards suggests repeated activity under the same PIID within that agency relationship.

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 = '8900' AND content__award__awardID__awardContractID__PIID = 'DEFE0011020'
        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
FLUOR FEDERAL PETROLEUM OPERATIONS, LLC 6RT19 790,570,953.60 790.57 million 76

Insight

Over the 5-year window, obligations under PIID DEFE0011020 are concentrated entirely with FLUOR FEDERAL PETROLEUM OPERATIONS, LLC (CAGE 6RT19). The vendor received 76 awards totaling $790.57 million, indicating a highly concentrated award pattern with no diversification across other vendors in the provided data. This level of concentration suggests the contract vehicle or requirement has been consistently placed with a single incumbent contractor.

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 = '8900' AND content__award__awardID__awardContractID__PIID = 'DEFE0011020'
    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
561210 FACILITIES SUPPORT SERVICES 790,570,953.60 790.57 million 76

Insight

Obligations for PIID DEFE0011020 over the 5-year window are fully concentrated in NAICS 561210, Facilities Support Services. This category accounts for $790.57 million across 76 awards, indicating a clear specialization in facilities support rather than a diversified NAICS mix. The concentration is significant because no other NAICS codes are represented in the provided results.

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 = '8900' AND content__award__awardID__awardContractID__PIID = 'DEFE0011020'
    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
R799 SUPPORT- MANAGEMENT: OTHER 790,570,953.60 790.57 million 76

Insight

Over the 5-year window, obligations for award DEFE0011020 are fully concentrated in PSC R799, Support- Management: Other. This PSC accounts for $790.57 million across 76 awards, indicating a consistent reliance on a single support-management category rather than a diversified PSC mix.

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 = '8900' AND content__award__awardID__awardContractID__PIID = 'DEFE0011020'
    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 193,051,154.32 193.05 million 15
2022 191,121,070.18 191.12 million 16
2023 114,760,707.20 114.76 million 13
2024 155,137,982.90 155.14 million 15
2025 136,500,039.00 136.50 million 17

Insight

Obligations for PIID DEFE0011020 under Agency 8900 were concentrated in a relatively narrow band over the 5-year window, ranging from 114.76 million in 2023 to 193.05 million in 2021. Annual award counts were also stable, between 13 and 17 actions per year, indicating consistent activity rather than large volatility in transaction volume. After a decline in 2023, obligated dollars rebounded in 2024 and moderated in 2025, but remained below the 2021–2022 level.

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.