Vehicle Number

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

Federal procurement analysis page for vehicle number 19AQMM22D0086 under Agency ID 1900, summarizing 10 years of award activity and obligations.

This page presents the federal procurement record for vehicle number 19AQMM22D0086 over the last 10 years. The record shows 12 award actions and total obligations of $122.52 million.

Generated at 03/21/2026

Analysis period: Last 10 years

Dollar values are shown as reported, with total obligated exact amount of $122,520,921.95 and average action value of $10,210,076.83.

Agency ID
1900
PIID
19AQMM22D0086
Type
Vehicle
Total Obligated
122.52 million
122,520,921.95
Actions
12
Average Action Value
10,210,076.83

Overview

The record for vehicle number 19AQMM22D0086 under Agency ID 1900 covers a 10-year analysis window with 12 award actions. Total obligated funding is $122,520,921.95, which rounds to $122.52 million, and the average action value is $10,210,076.83.

How to use this page

Use this page to review the procurement footprint associated with vehicle number 19AQMM22D0086 and compare action volume with obligated dollars. The figures support basic contract trend review, obligation sizing, and record-level analysis for the specified PIID.

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 = '19AQMM22D0086'
    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 122,520,921.95 122.52 million 12

Insight

Over the 10-year window, this vehicle is fully concentrated within the Department of State (Agency ID 1900), with $122.52 million obligated across 12 awards. This indicates the vehicle has been used exclusively, or nearly exclusively, by a single agency rather than distributed across multiple agencies. The award count suggests repeated use under the same agency relationship, but no cross-agency diversification is evident from the provided data.

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 = '19AQMM22D0086'
        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 = '19AQMM22D0086'
    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
541611 ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES 122,520,921.95 122.52 million 12

Insight

Obligations for PIID 19AQMM22D0086 are fully concentrated in NAICS 541611, Administrative Management and General Management Consulting Services, over the 10-year window. This code accounts for $122.52 million across 12 awards, indicating a narrow service profile with repeated use of the same professional services category. The distribution does not show diversification across NAICS codes in the provided data.

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 = '19AQMM22D0086'
    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
R499 SUPPORT- PROFESSIONAL: OTHER 122,520,921.95 122.52 million 12

Insight

Over the 10-year window, this vehicle’s obligations are fully concentrated in PSC R499, Support- Professional: Other, with $122.52 million across 12 awards. This indicates a narrow service mix and limited PSC diversification within the vehicle. The award count suggests repeated use of the vehicle for the same broad professional support category rather than a broad spread across different product or service codes.

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 = '19AQMM22D0086'
    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
2022 0.00 0.00 4
2023 0.00 0.00 4
2024 122,520,921.95 122.52 million 2
2025 0.00 0.00 2

Insight

Obligations for PIID 19AQMM22D0086 are highly concentrated in FY 2024, when $122.52 million was obligated across 2 awards. FY 2022 and FY 2023 each recorded 4 awards with no obligated dollars, indicating award activity without associated obligation in those years. FY 2025 shows 2 awards and no obligated dollars, so the 10-year window reflects a single-year obligation spike rather than a sustained funding pattern.

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.