Award Number

Award Number 9700 / W52P1J19F0400 Federal Contract Action Summary (Last 5 Years)

Federal award page for award number W52P1J19F0400 under agency ID 9700, summarizing obligation activity over the last 5 years.

This page presents FPDS-style procurement activity for award number W52P1J19F0400. Over the last 5 years, the award recorded 120 actions and total obligated dollars of 2.15 billion.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals shown reflect the provided analysis window and may differ from other reporting views because of timing and rounding.

Agency ID
9700
PIID
W52P1J19F0400
Type
Award
Total Obligated
2.15 billion
2,150,252,801.83
Actions
120
Average Action Value
17,918,773.35

Overview

The award record for W52P1J19F0400 shows 120 reported actions in the last 5 years. Total obligated dollars are 2,150,252,801.83, with an average action value of 17,918,773.35. The figures provide a compact view of obligation volume and action frequency for this award.

How to use this page

Use this page to review the award's obligation history, compare action counts, and track average action value over the selected period. The figures are useful for identifying the scale of activity associated with this award and for supporting procurement review across the stated window.

Top Agencies

SELECT
    content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'W52P1J19F0400'
    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,
    agency_name
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Actions
2100 DEPT OF THE ARMY 2,150,252,801.83 2.15 billion 120

Insight

Within the 5-year window for award W52P1J19F0400, obligations are entirely concentrated in a single agency: the Department of the Army. The Army accounts for $2.15 billion across 120 awards, indicating a fully concentrated spending distribution with no other agencies represented in this section. This level of concentration suggests the award activity is exclusively or overwhelmingly tied to Army procurement.

Top Vendors

SELECT
    vendor_name,
    cage_code,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'W52P1J19F0400'
        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,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions
VECTRUS SYSTEMS CORPORATION 1D510 2,150,252,801.83 2.15 billion 120

Insight

Obligations for PIID W52P1J19F0400 are entirely concentrated with VECTRUS SYSTEMS CORPORATION (CAGE 1D510) over the 5-year window. The vendor received 120 awards totaling $2.15 billion, indicating a highly concentrated award profile with no other vendors represented in this section.

Top NAICS

SELECT
    content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'W52P1J19F0400'
    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,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
561210 FACILITIES SUPPORT SERVICES 2,150,252,801.83 2.15 billion 120

Insight

Within the 5-year window, obligations for PIID W52P1J19F0400 are fully concentrated in NAICS 561210, Facilities Support Services, with $2.15 billion across 120 awards. This indicates a highly focused acquisition profile with no distribution across other NAICS codes in the provided results. The volume of awards suggests repeated procurement activity within the same services category over the period.

Top PSC Codes

SELECT
    content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'W52P1J19F0400'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
R706 SUPPORT- MANAGEMENT: LOGISTICS SUPPORT 2,150,252,801.83 2.15 billion 120

Insight

Award obligations for PIID W52P1J19F0400 are fully concentrated in PSC R706, Support- Management: Logistics Support, with $2.15 billion obligated across 120 awards. This indicates a highly focused procurement profile rather than a diversified PSC distribution. The concentration in a single PSC suggests logistics support is the dominant functional requirement over the 5-year window.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'W52P1J19F0400'
    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 ASC
Year Total Obligated Readable Actions
2021 497,733,447.66 497.73 million 20
2022 312,839,822.25 312.84 million 18
2023 569,462,462.88 569.46 million 35
2024 360,349,737.55 360.35 million 28
2025 409,867,331.49 409.87 million 19

Insight

Obligations for PIID W52P1J19F0400 under agency 9700 were uneven across the 5-year window, ranging from 312.84 million in 2022 to 569.46 million in 2023. Award counts also varied materially, peaking at 35 in 2023 and declining to 19 in 2025, indicating a concentrated surge in both value and volume in 2023 rather than a steady annual pattern. After the 2023 high, obligations fell in 2024 to 360.35 million, then increased to 409.87 million in 2025, remaining below the 2021 and 2023 levels.

Use FPDS Query for deeper award and vehicle analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, 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.