Federal Contractor

FLUOR IDAHO, LLC Federal Contract Obligations (Last Year)

FLUOR IDAHO, LLC (CAGE 6GGS3, UEI YLW9AV27EKY6) shows no recorded federal obligations in the last full year.

For the last full year, FLUOR IDAHO, LLC had no reported federal award actions, with total obligated amounts and action counts both at zero. No agency, NAICS, or annual trend detail is available from the provided dataset.

Generated at 03/21/2026

Analysis period: Last full year

This analysis reflects the provided FPDS summary for the last full year only and contains no recorded obligations, awards, or breakdown rows.

CAGE Code
6GGS3
UEI
YLW9AV27EKY6
Total Obligated
0.00
0.00
Award Actions
0
Average Action Value
0.00

About FLUOR IDAHO, LLC federal contract activity

FLUOR IDAHO, LLC (CAGE 6GGS3, UEI YLW9AV27EKY6) shows no recorded FPDS obligations during the last full year. The available dataset reflects zero awards, zero obligated dollars, and an average award value of $0.00, indicating no observable federal procurement activity in the period analyzed.

Agency mix and customer concentration

No agency concentration can be assessed because the company had no awards in the analysis window. With no obligated dollars reported, there is no basis to identify a primary awarding agency or cross-agency distribution.

Industry profile based on NAICS activity

No NAICS concentration can be derived from the available data because there were no reported awards. As a result, the dataset does not support identification of the vendor’s federal procurement labor or service profile for the period.

Annual contract trend over the analysis window

The annual trend is flat at zero across the last full year, with no recorded obligations or award events. With no time-series activity present, there is no evidence of month-to-month or quarter-to-quarter procurement movement.

How to interpret this page

This summary is based on FPDS award records filtered to the last full year for the vendor identifiers provided. Metrics reflect only reported obligations and award counts in the available dataset; absence of records is treated as no observed federal contract activity in scope.

Top Agencies

SELECT
    agency_id,
    agency_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
        anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '6GGS3'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions

Insight

No notable agency concentration was available for this analysis window.

Top NAICS

SELECT
    naics_code,
    naics_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
        anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '6GGS3'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions

Insight

No notable NAICS concentration was available for this analysis window.

Annual Trend

SELECT
    year,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '6GGS3'
        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 DESC
Year Total Obligated Readable Award Actions

Insight

No annual trend data was available for this analysis window.

Use FPDS Query for deeper contractor analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, 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.