Award Number

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

Federal procurement award record for award number W52P1J10C0062 under agency ID 9700, covering the last 10 years of reported actions and obligations.

This page summarizes procurement activity for award number W52P1J10C0062 across the last 10 years. The record shows 142 award actions and total obligated funding of $2.41 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Obligation totals are based on the provided exact amount of 2409046216.53 and may differ from rounded display values.

Agency ID
9700
PIID
W52P1J10C0062
Type
Award
Total Obligated
2.41 billion
2,409,046,216.53
Actions
142
Average Action Value
16,965,114.20

Overview

The award record for W52P1J10C0062 shows 142 reported actions over the last 10 years, with total obligated funding of $2,409,046,216.53. The average action value is $16,965,114.20, based on the provided action count and obligation total. These figures describe the reported procurement activity associated with agency ID 9700.

How to use this page

Use this page to review overall award magnitude, action frequency, and obligation trends for W52P1J10C0062 within the selected time window. It is useful for comparing this award against other federal procurement records by total obligated dollars and average action value.

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 = 'W52P1J10C0062'
    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,409,046,216.53 2.41 billion 141
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Obligations for PIID W52P1J10C0062 are overwhelmingly concentrated in the DEPT OF THE ARMY, which accounts for $2.41 billion across 141 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears only once in the 10-year window and carries no obligated dollars, indicating negligible funding distribution outside the Army.

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 = 'W52P1J10C0062'
        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,011,397,117.67 2.01 billion 122
VECTRUS SYSTEMS CORPORATION 397,649,098.86 397.65 million 20

Insight

VECTRUS SYSTEMS CORPORATION is the dominant vendor tied to PIID W52P1J10C0062 over the 10-year window, with $2.01 billion across 122 awards under CAGE 1D510. An additional $397.65 million is recorded to the same vendor name without a CAGE code across 20 awards, indicating a second award record set that materially adds to the vendor’s total footprint. Overall, obligations are highly concentrated in one vendor, with the named vendor accounting for nearly all reported activity 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 = 'W52P1J10C0062'
    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,409,046,216.53 2.41 billion 142

Insight

Over the 10-year window, obligations for PIID W52P1J10C0062 are fully concentrated in NAICS 561210, Facilities Support Services, with $2.41 billion across 142 awards. This indicates a highly focused procurement profile with no observed distribution across other NAICS codes in the provided data. The volume of awards suggests repeated use of the same service category over time rather than a diversified obligation base.

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 = 'W52P1J10C0062'
    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
M159 OPER OF GOVT OTHER INDUSTRIAL BLDG 2,409,046,216.53 2.41 billion 142

Insight

Obligations on this award are fully concentrated in PSC M159, OPER OF GOVT OTHER INDUSTRIAL BLDG, with $2.41 billion across 142 actions over the 10-year window. This indicates a highly focused obligation profile tied to a single PSC rather than a distributed mix of product or service categories. The volume of actions suggests repeated funding activity under the same classification.

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 = 'W52P1J10C0062'
    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
2016 398,056,346.40 398.06 million 23
2017 494,431,782.18 494.43 million 25
2018 510,654,706.24 510.65 million 16
2019 342,635,237.88 342.64 million 19
2020 645,439,289.19 645.44 million 16
2021 97,228,755.25 97.23 million 15
2022 -39,168,081.77 -39.17 million 13
2023 -11,872,777.30 -11.87 million 11
2024 -480,999.76 -481.00 thousand 1
2025 -27,878,041.78 -27.88 million 3

Insight

Obligations under PIID W52P1J10C0062 were concentrated in the earlier years of the 10-year window, with annual totals ranging from $398.06 million to $645.44 million in 2016–2020 and award counts between 16 and 25. Funding then dropped sharply in 2021 to $97.23 million, followed by negative annual obligations in 2022–2025, indicating subsequent deobligations or downward adjustments outweighed new obligations in those years. Award volume also declined over time, from 25 awards in 2017 to 1 award in 2024 and 3 awards in 2025.

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.