Federal Contractor

FOREIGN UTILITY CONSOLIDATED REPORTING Federal Contract Obligations (Last Year)

FOREIGN UTILITY CONSOLIDATED REPORTING, CAGE 3JDX5 and UEI JKRMS84PMND5, received 38 federal award actions totaling $49.86 million in the last full year.

FOREIGN UTILITY CONSOLIDATED REPORTING’s federal award activity was concentrated almost entirely in the Department of the Army, which accounted for 36 actions and $49.82 million. Smaller obligations came from the Department of State and the Forest Service, while the largest NAICS category was regulation and administration of communications, electric, gas, and other utilities.

Generated at 03/21/2026

Analysis period: Last full year

This page summarizes FPDS-observed obligations for the last full year and reflects award actions tied to the vendor identifiers provided.

CAGE Code
3JDX5
UEI
JKRMS84PMND5
Total Obligated
49.86 million
49,855,359.89
Award Actions
38
Average Action Value
1,311,983.15

About FOREIGN UTILITY CONSOLIDATED REPORTING federal contract activity

FOREIGN UTILITY CONSOLIDATED REPORTING, CAGE 3JDX5 and UEI JKRMS84PMND5, received 49.86 million in obligations across 38 awards in the last full year, for an average award value of 1.31 million. The profile is highly concentrated, with the Department of the Army accounting for nearly all obligated dollars and award activity.

Agency mix and customer concentration

The Department of the Army led vendor obligations with 49.82 million across 36 awards, representing the dominant share of spending in the period. The remaining activity was minimal and split across the Department of State and the Forest Service, each with a single award below 20 thousand.

Industry profile based on NAICS activity

Obligations were concentrated in utilities-related work, led by NAICS 926130, Regulation and Administration of Communications, Electric, Gas, and Other Utilities, at 38.68 million across 29 awards. Additional spending appeared in Electric Power Distribution, Steam and Air-Conditioning Supply, Sewage Treatment Facilities, and Natural Gas Distribution, indicating a broad but still utility-focused contracting pattern.

Annual contract trend over the analysis window

The annual trend shows 49.86 million in total obligations in 2025 across 38 awards. Because the analysis window covers only the last full year, the trend data reflects a single-year snapshot rather than a multi-year movement.

How to interpret this page

This summary is based on FPDS obligation records associated with CAGE 3JDX5 and UEI JKRMS84PMND5 for the last full year. Agency and NAICS breakdowns reflect awarded obligations and award counts reported in the provided dataset; totals may not reconcile exactly due to rounding.

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 = '3JDX5'
        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
2100 DEPT OF THE ARMY 49,823,552.35 49.82 million 36
1900 STATE, DEPARTMENT OF 18,567.54 18.57 thousand 1
12C2 FOREST SERVICE 13,240.00 13.24 thousand 1

Insight

During the last full year, obligations to FOREIGN UTILITY CONSOLIDATED REPORTING were highly concentrated in the DEPT OF THE ARMY, which accounted for $49.82 million of $49.86 million total obligated across 36 of 38 awards. The remaining activity was minimal and split across two civilian agencies: the DEPARTMENT OF STATE at $18.57 thousand and the FOREST SERVICE at $13.24 thousand, each on one award. This pattern indicates a predominantly Army-driven buying profile with limited diversification across agencies.

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 = '3JDX5'
        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
926130 REGULATION AND ADMINISTRATION OF COMMUNICATIONS, ELECTRIC, GAS, AND OTHER UTILITIES 38,680,707.55 38.68 million 29
221122 ELECTRIC POWER DISTRIBUTION 6,427,883.51 6.43 million 2
221330 STEAM AND AIR-CONDITIONING SUPPLY 1,448,282.19 1.45 million 1
221320 SEWAGE TREATMENT FACILITIES 978,945.85 978.95 thousand 1
221210 NATURAL GAS DISTRIBUTION 826,846.77 826.85 thousand 1
221310 WATER SUPPLY AND IRRIGATION SYSTEMS 819,272.79 819.27 thousand 1
562219 OTHER NONHAZARDOUS WASTE TREATMENT AND DISPOSAL 641,613.69 641.61 thousand 1
337214 OFFICE FURNITURE (EXCEPT WOOD) MANUFACTURING 18,567.54 18.57 thousand 1
721110 HOTELS (EXCEPT CASINO HOTELS) AND MOTELS 13,240.00 13.24 thousand 1

Insight

Over the last full year, obligations for FOREIGN UTILITY CONSOLIDATED REPORTING (CAGE 3JDX5) were heavily concentrated in NAICS 926130, which accounted for $38.68 million across 29 awards, or most of the $49.86 million obligated across 38 awards. The next largest category, NAICS 221122, represented $6.43 million across 2 awards, while all remaining NAICS codes each were below $1.45 million and generally appeared as single-award obligations. This pattern indicates a narrow spending profile centered on utilities regulation/administration, with limited activity in other utility and related service codes.

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 = '3JDX5'
        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
2025 49,855,359.89 49.86 million 38

Insight

During the last full year, FOREIGN UTILITY CONSOLIDATED REPORTING (CAGE 3JDX5) received $49.86 million in obligated funding across 38 awards. This equates to an average award value of $1.31 million, indicating a moderate concentration of obligations across a relatively small number of actions. With only one annual data point in the 1-year window, no year-over-year trend can be assessed from the provided data.

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.