Award Number

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

Award number W52P1J19F0400 for agency 9700 shows 19 actions in the last full year with total obligations of $409.87 million.

This page summarizes award number W52P1J19F0400 under agency ID 9700 for the last full year. It reports 19 award actions and total obligated amounts of $409,867,331.49.

Generated at 03/20/2026

Analysis period: Last full year

Total obligated values are shown as both a readable figure and the exact recorded amount, and the average action value is $21,571,964.82.

Agency ID
9700
PIID
W52P1J19F0400
Type
Award
Total Obligated
409.87 million
409,867,331.49
Actions
19
Average Action Value
21,571,964.82

Overview

For the last full year, award number W52P1J19F0400 under agency ID 9700 recorded 19 award actions. The award’s total obligated amount was $409,867,331.49, or about $409.87 million. The average action value was $21,571,964.82.

How to use this page

Use this page to review award-level activity, obligation totals, and action volume for W52P1J19F0400. It supports quick comparison of the total obligated amount against the number of recorded actions and the average value per action.

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 1 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 409,867,331.49 409.87 million 19

Insight

Over the past 1 year, obligations for PIID W52P1J19F0400 are concentrated entirely in DEPT OF THE ARMY, which accounts for $409.87 million across 19 awards. This indicates a highly concentrated obligation pattern with no diversification across other agencies in the provided data. The award activity is therefore dominated by a single agency relationship within the observed window.

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 1 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 409,867,331.49 409.87 million 19

Insight

Over the past year, obligations for PIID W52P1J19F0400 are fully concentrated with VECTRUS SYSTEMS CORPORATION (CAGE 1D510), which accounts for $409.87 million across 19 awards. This indicates a highly concentrated vendor distribution with no evidence of diversification in the provided data. The award pattern suggests repeated funding to a single incumbent or primary contractor under this PIID.

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 1 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 409,867,331.49 409.87 million 19

Insight

Over the 1-year window, obligations for award W52P1J19F0400 are fully concentrated in NAICS 561210, Facilities Support Services. This NAICS accounts for $409.87 million across 19 awards, indicating a highly concentrated procurement pattern with no diversification across other NAICS codes in the provided data.

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 1 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 409,867,331.49 409.87 million 19

Insight

Over the past 1 year, obligations for award W52P1J19F0400 under agency 9700 were concentrated entirely in PSC R706, Support - Management: Logistics Support. This PSC accounted for $409.87 million across 19 actions, indicating a clear concentration of spending in a single services category rather than a diversified PSC distribution.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 409,867,331.49 409.87 million 19

Insight

Over the 1-year window, obligations on PIID W52P1J19F0400 were concentrated in a single fiscal year: FY 2025 accounts for $409.87 million across 19 awards. This indicates activity was fully concentrated in the reported year, with no cross-year distribution reflected in the provided data. The volume and value suggest a high-dollar, low-count award pattern within the period.

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