Federal Agency

CHIEF PROCUREMENT OFFICER Federal Contract Obligations (Last Year)

FPDS Query page for CHIEF PROCUREMENT OFFICER (Agency ID 8654) covering the last full year, with no recorded award actions in the provided data.

This page summarizes procurement activity for CHIEF PROCUREMENT OFFICER during the last full year. The provided dataset shows zero award actions and does not include totals, vendor detail, NAICS detail, or annual trend values.

Generated at 03/21/2026

Analysis period: Last full year

Values for total obligated amount, average action value, top vendors, top NAICS codes, and annual trend are not available in the supplied inputs.

Agency ID
8654
Total Obligated
0.00
Award Actions
0
Average Action Value
0.00

About CHIEF PROCUREMENT OFFICER federal contract activity

FPDS Query shows no recorded award activity for CHIEF PROCUREMENT OFFICER (Agency ID 8654) in the last full year. With an award count of 0, there is no obligated value or average award value to summarize for the analysis period.

Vendor concentration and leading contractors

No vendor concentration can be assessed because the agency recorded no awards in the last full year. As a result, there are no top vendors to identify or compare.

Industry profile based on NAICS activity

No NAICS distribution is available for the same reason: the agency reported no awards during the analysis window. Without award records, there is no basis for identifying leading industry categories or procurement focus areas.

Annual contract trend over the analysis window

The annual trend is flat at zero for the last full year, reflecting no recorded award activity across the period. With no awards in the dataset, there are no month-to-month or year-over-year changes to evaluate.

How to interpret this page

This summary is based on FPDS Query results for CHIEF PROCUREMENT OFFICER (Agency ID 8654) over the last full year. Where award activity is absent, vendor, NAICS, and trend fields are not inferred and remain unassessed.

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

Insight

No notable vendor concentration was available for this analysis window.

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

Insight

No notable NAICS concentration was available for this analysis window.

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 1 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions

Insight

No annual trend data was available for this analysis window.

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