Federal Contractor

CORE TECH-HDCC-KAJIMA LLC Federal Contract Obligations (Last 10 Years)

CORE TECH-HDCC-KAJIMA LLC is a federal vendor with 116 award actions and $1.81 billion obligated over the last 10 years, led by Navy construction work.

CORE TECH-HDCC-KAJIMA LLC, identified by CAGE 7HD12 and UEI H3PJV2J2DAA2, received 116 award actions totaling $1,806,748,478.39 in the last 10 years. The Department of the Navy accounts for all recorded obligations in this period, with activity concentrated in commercial building construction and related heavy construction NAICS categories.

Generated at 03/21/2026

Analysis period: Last 10 years

Figures reflect readable obligations and award counts in the stated 10-year analysis window and may not capture actions outside the provided FPDS extract.

CAGE Code
7HD12
UEI
H3PJV2J2DAA2
Total Obligated
1.81 billion
1,806,748,478.39
Award Actions
116
Average Action Value
15,575,417.91

About CORE TECH-HDCC-KAJIMA LLC federal contract activity

CORE TECH-HDCC-KAJIMA LLC, identified by CAGE 7HD12 and UEI H3PJV2J2DAA2, recorded $1.81 billion in FPDS-observed obligations across 116 awards over the last 10 years, for an average award value of $15.58 million. The profile is highly concentrated in a single civilian-military customer base and reflects repeated placement on large construction awards rather than a broad multi-agency footprint.

Agency mix and customer concentration

The Department of the Navy accounts for all observed obligations in this dataset, totaling $1.81 billion across 116 awards. This concentration indicates a single-agency dependency profile, with performance and pipeline tied almost entirely to Navy procurement activity.

Industry profile based on NAICS activity

Work is dominated by NAICS 236220, Commercial and Institutional Building Construction, which represents $1.01 billion and 104 awards. The next largest segment is NAICS 236116, New Multifamily Housing Construction, at $574.66 million across 10 awards, followed by a single large NAICS 237130 award of $219.00 million; NAICS 237990 appears only once at $25.00 thousand.

Annual contract trend over the analysis window

Obligations accelerated sharply in 2021, when the vendor recorded $730.28 million across 13 awards, then dropped to $1.59 million in 2022 before rebounding in 2023 and 2024 to $236.40 million and $234.97 million, respectively. Activity strengthened again in 2025 to $452.01 million across 30 awards, indicating a recent upward shift after the 2022 trough.

How to interpret this page

This summary uses FPDS Query-observed contract obligations associated with the vendor’s CAGE and UEI over the last 10 years. Agency, NAICS, and annual figures are based on reported obligated dollars and award counts in the provided dataset; totals and rankings are descriptive, not causal. Missing records outside the supplied window or outside FPDS-observed obligations are not included.

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 = '7HD12'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
1700 DEPT OF THE NAVY 1,806,748,478.39 1.81 billion 116

Insight

Over the last 10 years, CORE TECH-HDCC-KAJIMA LLC’s reported obligations of $1.81 billion are entirely concentrated within a single agency: the Department of the Navy. The vendor received 116 awards in this period, for an average award value of about $15.6 million. This indicates a highly concentrated customer base with no observable agency diversification in the provided data.

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 = '7HD12'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 1,013,066,156.99 1.01 billion 104
236116 NEW MULTIFAMILY HOUSING CONSTRUCTION (EXCEPT FOR-SALE BUILDERS) 574,657,321.40 574.66 million 10
237130 POWER AND COMMUNICATION LINE AND RELATED STRUCTURES CONSTRUCTION 219,000,000.00 219.00 million 1
237990 OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION 25,000.00 25.00 thousand 1

Insight

Over the last 10 years, CORE TECH-HDCC-KAJIMA LLC’s obligated dollars are highly concentrated in NAICS 236220, Commercial and Institutional Building Construction, which accounts for about $1.01 billion across 104 awards, or roughly 56% of total obligations. NAICS 236116, New Multifamily Housing Construction, is the second-largest category at $574.66 million across 10 awards, while NAICS 237130 contributes $219.0 million in a single award, indicating a smaller number of very large projects. The remaining NAICS 237990 obligation is nominal at $25,000, showing limited diversification beyond the three primary construction categories.

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 = '7HD12'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 452,011,878.59 452.01 million 30
2024 234,967,437.35 234.97 million 28
2023 236,398,517.72 236.40 million 22
2022 1,593,291.88 1.59 million 11
2021 730,282,399.07 730.28 million 13
2020 1,118,579.99 1.12 million 8
2019 150,376,373.79 150.38 million 4

Insight

CORE TECH-HDCC-KAJIMA LLC (CAGE 7HD12) received $1.81 billion across 116 awards over the last 10 years, with average award value of $15.6 million. Obligations are highly concentrated in recent years: 2025 accounts for $452.0 million across 30 awards, following $235.0 million in 2024 and $236.4 million in 2023, while 2021 is the next largest year at $730.3 million across 13 awards. Several years reflect very low obligation levels, including 2020 and 2022 at about $1.1 million and $1.6 million respectively, indicating uneven annual funding rather than a steady obligation pattern.

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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.