Federal Contractor

CERNER GOVERNMENT SERVICES, INC. Federal Contract Obligations (Last Year)

Federal procurement profile for CERNER GOVERNMENT SERVICES, INC. (CAGE 7YVP7, UEI DT2KS3HH5FP5) covering last full year obligations and award activity.

In the last full year, CERNER GOVERNMENT SERVICES, INC. recorded 105 federal award actions totaling $1,026,171,187.75, for an average action value of $9,773,058.93. Most obligations were reported by the Department of Veterans Affairs, with nearly all spending concentrated in NAICS 541512, Computer Systems Design Services.

Generated at 03/21/2026

Analysis period: Last full year

Totals reflect FPDS-observed obligations for the analysis window and may include awards with zero obligated dollars in agency or NAICS breakout rows.

CAGE Code
7YVP7
UEI
DT2KS3HH5FP5
Total Obligated
1.03 billion
1,026,171,187.75
Award Actions
105
Average Action Value
9,773,058.93

About CERNER GOVERNMENT SERVICES, INC. federal contract activity

CERNER GOVERNMENT SERVICES, INC. recorded $1.03 billion in obligated federal awards across 105 actions in the last full year, with an average award value of $9.77 million. Activity was highly concentrated, indicating a small number of large awards rather than broad transaction volume. The company’s federal footprint is materially defined by a single civilian health agency customer base.

Agency mix and customer concentration

The VETERANS AFFAIRS, DEPARTMENT OF accounted for essentially all obligated dollars, with $1.03 billion across 103 awards. The CENTERS FOR DISEASE CONTROL AND PREVENTION registered two awards but no obligated dollars in the period provided. This pattern indicates near-total dependence on VA as the funding source and minimal agency diversification.

Industry profile based on NAICS activity

NAICS 541512, COMPUTER SYSTEMS DESIGN SERVICES, dominated the vendor’s activity at $1.02 billion across 98 awards, making it the primary driver of total obligations. Smaller amounts were tied to 541513, COMPUTER FACILITIES MANAGEMENT SERVICES, and 484210, USED HOUSEHOLD AND OFFICE GOODS MOVING, while 541611 showed award activity without obligated dollars. The revenue profile is therefore concentrated in systems design and closely related IT support services.

Annual contract trend over the analysis window

The annual trend shows all reported obligations in 2025, totaling $1.03 billion across 105 awards. With only one year in the analysis window, the data supports a point-in-time view rather than a multi-year trajectory. The available trend confirms high-volume, high-value federal activity in the period reviewed.

How to interpret this page

This summary is based on FPDS records for the vendor matched to CAGE code 7YVP7 and UEI DT2KS3HH5FP5 over the last full year. Totals, counts, and averages reflect the provided obligations dataset and are grouped by agency, NAICS code, and year. No information beyond the supplied analysis fields was used.

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 = '7YVP7'
        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
3600 VETERANS AFFAIRS, DEPARTMENT OF 1,026,171,187.75 1.03 billion 103
7523 CENTERS FOR DISEASE CONTROL AND PREVENTION 0.00 0.00 2

Insight

CERNER GOVERNMENT SERVICES, INC. received 1.03 billion in obligations across 105 awards during the last full year, with an average award value of about 9.77 million. Obligations were overwhelmingly concentrated in the Department of Veterans Affairs, which accounted for 1.03 billion across 103 awards. The only other recorded activity was two awards from the Centers for Disease Control and Prevention with zero obligated dollars, indicating a highly concentrated agency profile.

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 = '7YVP7'
        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
541512 COMPUTER SYSTEMS DESIGN SERVICES 1,022,457,287.32 1.02 billion 98
541513 COMPUTER FACILITIES MANAGEMENT SERVICES 3,587,947.03 3.59 million 2
484210 USED HOUSEHOLD AND OFFICE GOODS MOVING 125,953.40 125.95 thousand 3
541611 ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES 0.00 0.00 2

Insight

Over the last full year, CERNER GOVERNMENT SERVICES, INC. obligated 1.03 billion across 105 awards, with procurement activity highly concentrated in NAICS 541512, Computer Systems Design Services. This NAICS accounted for 1.02 billion of obligations across 98 awards, indicating that nearly all vendor spending was tied to a single service category. The remaining obligations were minimal and dispersed across NAICS 541513 and 484210, while 541611 shows two awards with no obligated value.

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 = '7YVP7'
        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 1,026,171,187.75 1.03 billion 105

Insight

During the last full year, CERNER GOVERNMENT SERVICES, INC. (CAGE 7YVP7) received $1.03 billion in obligated value across 105 awards, for an average award value of about $9.77 million. Obligations are concentrated in a single annual period, indicating that the vendor’s recent activity was heavily weighted toward one year rather than distributed across multiple years in the 1-year window. The award count and obligated value together suggest a portfolio of relatively large awards rather than a high volume of small actions.

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.