Award Number

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

Award record for PIID W52P1J19F0400 under agency ID 9700, showing obligation and action activity over the last 10 years.

This award page summarizes 129 actions tied to PIID W52P1J19F0400 in agency ID 9700. Over the last 10 years, total obligated amount is $2.20 billion, with an average action value of $17.06 million.

Generated at 03/20/2026

Analysis period: Last 10 years

Values reflect the provided analysis window and obligation totals for this award; the readable total is $2.20 billion and the exact total is $2,200,343,790.49.

Agency ID
9700
PIID
W52P1J19F0400
Type
Award
Total Obligated
2.20 billion
2,200,343,790.49
Actions
129
Average Action Value
17,056,928.61

Overview

This award record is identified by PIID W52P1J19F0400 and agency ID 9700. The analysis window covers the last 10 years and shows 129 award actions with total obligated amount of $2,200,343,790.49. The average action value is $17,056,928.61.

How to use this page

Use this page to review the scale and action history associated with the award number. The obligation total and average action value provide a quick view of award magnitude, while the action count shows how often the award was modified or funded during the period.

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 10 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,200,343,790.49 2.20 billion 129

Insight

Over the 10-year window, obligations for PIID W52P1J19F0400 are concentrated entirely within the DEPT OF THE ARMY, which accounts for $2.20 billion across 129 awards. This indicates a highly concentrated award pattern with no visible distribution across other agencies in the provided data. The volume of awards suggests repeated funding activity within a single agency relationship over time.

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 10 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,200,343,790.49 2.20 billion 129

Insight

Vendor concentration is highly pronounced for PIID W52P1J19F0400 over the 10-year window: VECTRUS SYSTEMS CORPORATION (CAGE 1D510) accounts for 2.20 billion in total obligated dollars across 129 awards. This indicates the award has been heavily concentrated with a single vendor rather than distributed among multiple recipients. The volume of awards alongside the funding total suggests sustained, repeated obligation activity with this vendor.

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 10 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,200,343,790.49 2.20 billion 129

Insight

For PIID W52P1J19F0400 over the 10-year window, obligations are fully concentrated in NAICS 561210, Facilities Support Services, totaling $2.20 billion across 129 awards. This indicates a highly concentrated acquisition profile with no diversity in the reported top NAICS segment. The volume of awards suggests repeated use of the same service category rather than broad distribution across multiple NAICS codes.

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 10 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,200,343,790.49 2.20 billion 129

Insight

Obligations under PIID W52P1J19F0400 are fully concentrated in PSC R706, Support- Management: Logistics Support, with $2.20 billion obligated across 129 awards over the 10-year window. This indicates a narrow product/service mix and sustained reliance on a single support category rather than a diversified procurement profile. The volume of awards suggests recurring use of this PSC in the award history.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2019 40,000,000.00 40.00 million 2
2020 10,090,988.66 10.09 million 7
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 are concentrated in the later years of the 10-year window, with materially higher activity beginning in 2021. Annual obligations rose from 40.00 million across 2 awards in 2019 to a peak of 569.46 million across 35 awards in 2023, indicating both increased dollar volume and award count. After 2023, obligations declined to 360.35 million in 2024 and 409.87 million in 2025, though both years remained well above the 2019–2020 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.