Federal Agency

CHIEF PROCUREMENT OFFICER Federal Contract Obligations (Last 5 Years)

FPDS procurement profile for the CHIEF PROCUREMENT OFFICER (Agency ID 8654) covering obligations and award activity over the last 5 years.

The CHIEF PROCUREMENT OFFICER recorded 20 award actions totaling $59,682,337.74, with an average action value of $2,984,116.88. Obligations were concentrated in data processing, hosting, and related services, along with telecommunications and computer-related services.

Generated at 03/21/2026

Analysis period: Last 5 years

Top vendor and NAICS summaries reflect obligated amounts in the provided analysis window; one listed NAICS row shows zero obligated value despite one award action.

Agency ID
8654
Total Obligated
59.68 million
59,682,337.74
Award Actions
20
Average Action Value
2,984,116.88

About CHIEF PROCUREMENT OFFICER federal contract activity

Over the last 5 years, CHIEF PROCUREMENT OFFICER (Agency ID 8654) recorded 20 awards totaling 59.68 million in obligated dollars, with an average award value of 2.98 million. Procurement activity is concentrated in a small number of relatively high-value awards, indicating a limited but material contracting footprint during the analysis window.

Vendor concentration and leading contractors

PERSPECTA ENTERPRISE SOLUTIONS LLC is the dominant recipient, accounting for 37.15 million across 3 awards, or more than half of total obligations in this period. AT&T CORP. is the next largest vendor at 11.34 million across 3 awards, followed by LEIDOS, INC. at 5.19 million in a single award; the remaining top vendors each represent a materially smaller share of obligated dollars.

Industry profile based on NAICS activity

Obligations are concentrated in IT and telecommunications-related NAICS categories. DATA PROCESSING, HOSTING, AND RELATED SERVICES (518210) leads with 37.15 million, followed by WIRED TELECOMMUNICATIONS CARRIERS (517110) at 11.34 million; smaller but still relevant activity appears in OTHER COMPUTER RELATED SERVICES (541519) and COMPUTER SYSTEMS DESIGN SERVICES (541512).

Annual contract trend over the analysis window

The provided annual trend data shows all reported obligations and awards in 2022, totaling 59.68 million across 20 awards. No separate year-over-year movement can be established from the available data because only one annual point is present in the analysis window.

How to interpret this page

This summary uses FPDS Query award records for CHIEF PROCUREMENT OFFICER over the last 5 years and aggregates obligated dollars, award counts, vendor totals, and NAICS totals. The annual trend reflects the same dataset summarized by fiscal year; figures are presented as reported in the source data and rounded where shown as readable amounts.

Top Vendors

SELECT
    vendor_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__purchaserInformation__contractingOfficeAgencyID = '8654'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY vendor_name
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor Total Obligated Readable Award Actions
PERSPECTA ENTERPRISE SOLUTIONS LLC 37,151,922.67 37.15 million 3
AT&T CORP. 11,337,886.26 11.34 million 3
LEIDOS, INC. 5,190,079.00 5.19 million 1
MINBURN TECHNOLOGY GROUP, LLC 3,332,011.26 3.33 million 2
ASRC FEDERAL DATA SOLUTIONS, LLC 1,709,101.44 1.71 million 2
ARCTIC INFORMATION TECHNOLOGY, INC 835,034.00 835.03 thousand 2
PENIEL SOLUTIONS, LLC 126,303.11 126.30 thousand 2
EMERGENT, LLC 0.00 0.00 1
PETROSYS SOLUTIONS INC 0.00 0.00 1
GRANITE TELECOMMUNICATIONS, LLC 0.00 0.00 1

Insight

Over the last 5 years, the Chief Procurement Officer obligated $59.68 million across 20 awards, with an average award value of $2.98 million. Obligations are highly concentrated: PERSPECTA ENTERPRISE SOLUTIONS LLC accounts for $37.15 million, or about 62% of total obligated dollars, and the top two vendors together represent roughly 80% of obligations. Award activity is less concentrated than dollars, with several vendors receiving 1–3 awards each and three vendors listed with obligations of $0, indicating some small or non-obligated actions in the award mix.

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__purchaserInformation__contractingOfficeAgencyID = '8654'
        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
518210 DATA PROCESSING, HOSTING, AND RELATED SERVICES 37,151,922.67 37.15 million 3
517110 WIRED TELECOMMUNICATIONS CARRIERS 11,337,886.26 11.34 million 4
541519 OTHER COMPUTER RELATED SERVICES 5,876,146.70 5.88 million 8
541512 COMPUTER SYSTEMS DESIGN SERVICES 5,316,382.11 5.32 million 3
511210 SOFTWARE PUBLISHERS 0.00 0.00 1
334111 ELECTRONIC COMPUTER MANUFACTURING 0.00 0.00 1

Insight

Over the last 5 years, CHIEF PROCUREMENT OFFICER obligated $59.68 million across 20 awards, with spending concentrated in a few IT and telecommunications NAICS codes. NAICS 518210, Data Processing, Hosting, and Related Services, accounted for $37.15 million across 3 awards, or about 62 percent of total obligations, making it the dominant category. The next largest categories were 517110, Wired Telecommunications Carriers, at $11.34 million across 4 awards, and 541519, Other Computer Related Services, at $5.88 million across 8 awards, indicating a secondary concentration in network and computer support services.

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__purchaserInformation__contractingOfficeAgencyID = '8654'
        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
2022 59,682,337.74 59.68 million 20

Insight

Over the last 5 years, CHIEF PROCUREMENT OFFICER (Agency ID 8654) recorded $59.68 million in total obligations across 20 awards, with an average award value of $2.98 million. The available data are concentrated in 2022, indicating that obligations in the analysis period are fully concentrated in a single year rather than distributed across multiple years. This pattern suggests limited temporal dispersion and a highly concentrated award profile for the period reported.

Use FPDS Query for deeper analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper market analysis across agencies, vendors, NAICS, and contract trends.

Continue from this last 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.