CORE TECH-HDCC-KAJIMA LLC, CAGE 7HD12 and UEI H3PJV2J2DAA2, received $452,011,878.59 in obligated federal awards across 30 actions in 2025. The vendor’s activity was concentrated with the Department of the Navy and centered on construction work under NAICS 236220 and 237130.
Federal Contractor
CORE TECH-HDCC-KAJIMA LLC Federal Contract Obligations (Last Year)
CORE TECH-HDCC-KAJIMA LLC recorded 30 federal award actions totaling $452.01 million in the last full year, all from the Department of the Navy.
This page summarizes FPDS-observed obligations for the last full year and does not reflect future awards, modifications outside the window, or non-FPDS activity.
About CORE TECH-HDCC-KAJIMA LLC federal contract activity
CORE TECH-HDCC-KAJIMA LLC recorded 30 FPDS awards totaling $452.01 million in the last full year, with an average award value of $15.07 million. The profile is heavily concentrated in a single buying organization, indicating a focused federal customer base rather than a broadly distributed award footprint.
Agency mix and customer concentration
All obligated dollars in the analysis window came from the Department of the Navy, which accounted for the full $452.01 million across 30 awards. This level of concentration suggests the vendor's federal revenue is tied almost entirely to Navy procurement activity during the period reviewed.
Industry profile based on NAICS activity
The award portfolio is dominated by construction work. NAICS 236220, Commercial and Institutional Building Construction, represents $219.12 million across 25 awards, while NAICS 237130, Power and Communication Line and Related Structures Construction, contributes $219.00 million from a single award; the remaining obligations are split between NAICS 236116 and a small amount under NAICS 237990.
Annual contract trend over the analysis window
The annual trend shows all recorded obligations in 2025, with $452.01 million across 30 awards. With only one year in the analysis window, there is no within-period growth pattern to assess, but the data indicate a substantial volume of obligated work concentrated in that year.
How to interpret this page
This summary is based on FPDS records for the vendor's CAGE code 7HD12 and UEI H3PJV2J2DAA2 over the last full year. Obligations, award counts, and NAICS/agency concentrations are taken directly from the provided analysis set; no inflation adjustment, deobligation netting beyond the source totals, or external enrichment was applied.
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 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 |
|---|---|---|---|---|
| 1700 | DEPT OF THE NAVY | 452,011,878.59 | 452.01 million | 30 |
Insight
Over the last full year, CORE TECH-HDCC-KAJIMA LLC’s obligated dollars were fully concentrated in a single agency: the Department of the Navy. The Navy accounted for the full $452.01 million across 30 awards, indicating complete agency concentration with no observable distribution across other agencies in this period. The average award value was $15.07 million, consistent with a portfolio of relatively large awards under one customer relationship.
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 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 |
|---|---|---|---|---|
| 236220 | COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION | 219,122,667.56 | 219.12 million | 25 |
| 237130 | POWER AND COMMUNICATION LINE AND RELATED STRUCTURES CONSTRUCTION | 219,000,000.00 | 219.00 million | 1 |
| 236116 | NEW MULTIFAMILY HOUSING CONSTRUCTION (EXCEPT FOR-SALE BUILDERS) | 13,864,211.03 | 13.86 million | 3 |
| 237990 | OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION | 25,000.00 | 25.00 thousand | 1 |
Insight
Over the last full year, CORE TECH-HDCC-KAJIMA LLC obligated $452.01 million across 30 awards, with activity highly concentrated in two NAICS codes. NAICS 236220, Commercial and Institutional Building Construction, accounted for $219.12 million across 25 awards, while NAICS 237130, Power and Communication Line and Related Structures Construction, represented $219.00 million in a single award, together comprising nearly all obligations. The remaining obligations were limited to NAICS 236116 at $13.86 million across 3 awards and a nominal $25,000 under NAICS 237990, indicating a narrow concentration in construction-related 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 1 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 |
Insight
CORE TECH-HDCC-KAJIMA LLC recorded $452.01 million in obligated dollars across 30 awards in the last full year, yielding an average award value of $15.07 million. With all reported obligations concentrated in 2025, the annual trend indicates a single-year concentration of activity rather than a multi-year pattern. The volume and value profile suggest a relatively small number of higher-value actions driving total obligations.
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.