Vehicle Number

Vehicle Number 1900 / 19AQMM20D0126 Federal Contract Action Summary (Last 10 Years)

Analyst summary of vehicle number 19AQMM20D0126 for Agency ID 1900 over the last 10 years, showing $48.00 million in obligated action value across 14 award actions.

This page summarizes the procurement record for vehicle number 19AQMM20D0126 associated with Agency ID 1900. Over the last 10 years, the record shows $48.00 million in total obligated value across 14 award actions, for an average action value of $3.43 million.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals are based on the provided readable obligated value of $48.00 million and exact obligated value of 48000000.

Agency ID
1900
PIID
19AQMM20D0126
Type
Vehicle
Total Obligated
48.00 million
48,000,000.00
Actions
14
Average Action Value
3,428,571.43

Overview

The record for vehicle number 19AQMM20D0126 shows 14 award actions in the last 10 years. Total obligated value is $48.00 million, with an average action value of $3,428,571.43. This provides a compact view of activity tied to Agency ID 1900.

How to use this page

Use this page to review high-level obligation and action-count trends for PIID 19AQMM20D0126. It is suited for procurement analysis, contract tracking, and quick comparison against other vehicles or agency records.

Top Agencies

SELECT
    content__IDV__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__IDV__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '1900' AND content__IDV__contractID__IDVID__PIID = '19AQMM20D0126'
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__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
1900 STATE, DEPARTMENT OF 48,000,000.00 48.00 million 14

Insight

Over the 10-year window, this vehicle is fully concentrated within the Department of State, which accounts for the entire reported obligation total of $48.00 million across 14 awards. The award volume indicates repeated use of the vehicle by a single agency rather than broad interagency distribution. This pattern suggests agency-specific reliance and limited spread across the government.

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__IDV__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__IDV__contractID__IDVID__agencyID = '1900' AND content__IDV__contractID__IDVID__PIID = '19AQMM20D0126'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions

Insight

No vendor concentration was available for this analysis window.

Top NAICS

SELECT
    content__IDV__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__IDV__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '1900' AND content__IDV__contractID__IDVID__PIID = '19AQMM20D0126'
    AND content__IDV__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__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 48,000,000.00 48.00 million 14

Insight

Obligations under PIID 19AQMM20D0126 are fully concentrated in NAICS 561210, Facilities Support Services, with $48.00 million across 14 awards over the 10-year window. This indicates a narrow service scope and no observed diversification across NAICS codes in the provided data. The repeated award activity suggests sustained reliance on the same facilities support category rather than a broad distribution of obligations.

Top PSC Codes

SELECT
    content__IDV__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__IDV__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '1900' AND content__IDV__contractID__IDVID__PIID = '19AQMM20D0126'
    AND content__IDV__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
R408 SUPPORT- PROFESSIONAL: PROGRAM MANAGEMENT/SUPPORT 48,000,000.00 48.00 million 14

Insight

Over the 10-year window, vehicle 19AQMM20D0126 shows complete PSC concentration in R408, Support- Professional: Program Management/Support. All reported obligation, $48.00 million across 14 awards, is attributed to this single PSC, indicating a highly focused service profile with no diversification across PSC categories in the provided data.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate)) AS year,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '1900' AND content__IDV__contractID__IDVID__PIID = '19AQMM20D0126'
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2020 0.00 0.00 1
2021 0.00 0.00 3
2022 0.00 0.00 3
2023 0.00 0.00 2
2024 48,000,000.00 48.00 million 3
2025 0.00 0.00 2

Insight

Obligations under PIID 19AQMM20D0126 are highly concentrated in 2024, when $48.0 million was obligated across 3 awards. In the other years with activity from 2020 through 2025, award counts ranged from 1 to 3 but reported obligations were $0, indicating a largely non-obligating pattern outside 2024. This suggests a one-year spike in funding rather than a sustained annual obligation trend over the 10-year window.

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.