Federal Contractor

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

CORE TECH-HDCC-KAJIMA LLC is a federal procurement vendor page for CAGE 7HD12 and UEI H3PJV2J2DAA2, showing 1.66 billion in obligations across 104 award actions over the last 5 years.

The vendor’s federal contract history is concentrated with the Department of the Navy, which accounts for the full 1.66 billion obligated in the analysis window. Most obligations fall under commercial and institutional building construction and new multifamily housing construction, with a smaller share in power and communication line and related structures construction.

Generated at 03/21/2026

Analysis period: Last 5 years

Annual obligations were highest in 2021 and 2025, while 2022 shows a much lower level of activity; figures reflect obligated amounts by award action in the selected 5-year window.

CAGE Code
7HD12
UEI
H3PJV2J2DAA2
Total Obligated
1.66 billion
1,655,253,524.61
Award Actions
104
Average Action Value
15,915,899.27

About CORE TECH-HDCC-KAJIMA LLC federal contract activity

CORE TECH-HDCC-KAJIMA LLC (CAGE 7HD12, UEI H3PJV2J2DAA2) recorded $1.66 billion in obligated federal awards across 104 actions over the last 5 years, with an average award value of $15.92 million. The award profile indicates a concentrated, high-dollar contracting footprint rather than a broad transaction base.

Agency mix and customer concentration

All obligated funding in the analysis window came from the Department of the Navy, which accounted for the full $1.66 billion and all 104 awards. This indicates a single-agency dependency profile with no observable diversification across other federal civilian or defense agencies in the provided data.

Industry profile based on NAICS activity

Contracting activity is dominated by NAICS 236220, Commercial and Institutional Building Construction, with $861.57 million across 92 awards, followed by NAICS 236116, New Multifamily Housing Construction, with $574.66 million across 10 awards. A smaller portion of value is tied to NAICS 237130 at $219.0 million in one award, while NAICS 237990 is immaterial at $25,000, confirming a construction-heavy portfolio centered on building and related infrastructure work.

Annual contract trend over the analysis window

Annual obligations were highly uneven, peaking in 2021 at $730.28 million, falling sharply in 2022 to $1.59 million, and then rebounding in 2023 and 2024 at $236.40 million and $234.97 million, respectively. 2025 shows renewed acceleration to $452.01 million across 30 awards, suggesting recent volume expansion after the 2022 trough.

How to interpret this page

This page summarizes FPDS award data associated with CAGE 7HD12 and UEI H3PJV2J2DAA2 for the last 5 years. Totals reflect obligated dollars and award counts from the supplied dataset, grouped by agency, NAICS code, and fiscal year; values are reported as provided and may not capture obligations outside the analysis window or records not matched to the vendor identifiers.

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 5 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,655,253,524.61 1.66 billion 104

Insight

Over the last 5 years, CORE TECH-HDCC-KAJIMA LLC’s obligations are fully concentrated within the DEPT OF THE NAVY, which accounts for the entire $1.66 billion in reported total obligations. The vendor received 104 awards in this period, yielding an average award value of about $15.9 million. This indicates a highly concentrated customer base with no observed 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 5 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 861,571,203.21 861.57 million 92
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 5 years, CORE TECH-HDCC-KAJIMA LLC’s obligations are highly concentrated in NAICS 236220, Commercial and Institutional Building Construction, which accounts for $861.57 million across 92 awards, or just over half of the vendor’s $1.66 billion in total obligated value. NAICS 236116, New Multifamily Housing Construction (Except For-Sale Builders), is the second-largest area at $574.66 million but is materially less frequent, with 10 awards, indicating a smaller number of higher-value actions. The remaining obligations are driven by one large award in NAICS 237130 ($219.00 million) and a nominal amount in NAICS 237990 ($25,000), showing a narrow, construction-focused spending profile with limited diversification beyond building and related infrastructure work.

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 5 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

Insight

CORE TECH-HDCC-KAJIMA LLC (CAGE 7HD12) obligated $1.66 billion across 104 awards over the last 5 years, with an average award value of $15.9 million. Obligation volume is highly concentrated in 2021 and 2025, which together account for the majority of total dollars, while 2022 is a clear low point at $1.59 million across 11 awards. Award counts are relatively steady from 2023 through 2025, but dollar volume increased sharply in 2025, indicating larger awards in the most recent period.

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