Vehicle Number

Vehicle Number 1900 / 19AQMM22A0113 Federal Contract Action Summary (Last 5 Years)

This page summarizes the vehicle number record for Agency ID 1900 under PIID 19AQMM22A0113 over the last 5 years.

The record shows 4 award actions with total obligations of 67.50 million, for an average action value of 16.875 million. This page presents the available procurement summary for the vehicle number associated with this PIID.

Generated at 03/21/2026

Analysis period: Last 5 years

Values reflect the provided 5-year analysis window and may differ from line-item or modification-level totals if records are updated.

Agency ID
1900
PIID
19AQMM22A0113
Type
Vehicle
Total Obligated
67.50 million
67,500,000.00
Actions
4
Average Action Value
16,875,000.00

Overview

For the last 5 years, this vehicle number record is associated with 4 award actions and 67.50 million in total obligated value. The average action value is 16.875 million, based on the provided totals.

How to use this page

Use this page to review the procurement footprint tied to Agency ID 1900 and PIID 19AQMM22A0113. The figures provide a concise view of obligation volume and action frequency within the stated analysis window.

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 = '19AQMM22A0113'
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 67,500,000.00 67.50 million 4

Insight

Over the 5-year window, Department of State (agency ID 1900) accounts for $67.50 million in obligations across 4 awards under vehicle PIID 19AQMM22A0113. The activity is fully concentrated in a single agency, indicating no observable cross-agency distribution in the provided data. The small award count relative to total obligated amount suggests relatively high dollar concentration per award.

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 = '19AQMM22A0113'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 = '19AQMM22A0113'
    AND content__IDV__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
337122 NONUPHOLSTERED WOOD HOUSEHOLD FURNITURE MANUFACTURING 67,500,000.00 67.50 million 4

Insight

Over the 5-year window, obligations under PIID 19AQMM22A0113 are fully concentrated in a single NAICS, 337122 (Nonupholstered Wood Household Furniture Manufacturing). This NAICS accounts for $67.5 million across 4 awards, indicating a narrowly focused procurement pattern rather than a diversified industrial mix. The limited award count suggests repeated activity within the same product category, but no cross-NAICS distribution is evident 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 = '19AQMM22A0113'
    AND content__IDV__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
7105 HOUSEHOLD FURNITURE 67,500,000.00 67.50 million 4

Insight

Obligations under PIID 19AQMM22A0113 are concentrated entirely in PSC 7105, Household Furniture, with $67.5 million obligated across 4 awards over the 5-year window. This indicates a narrow product scope and a high degree of concentration in a single PSC category. The distribution suggests the vehicle is being used consistently for household furniture acquisitions rather than a diversified mix of supplies or services.

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 = '19AQMM22A0113'
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 1
2023 67,500,000.00 67.50 million 2
2024 0.00 0.00 1

Insight

Obligations for PIID 19AQMM22A0113 are highly concentrated in 2023, when 67.50 million was obligated across 2 awards. The other reported years, 2022 and 2024, each show 1 award with no recorded obligations, indicating activity was present but not financially significant in those years. Over the 5-year window provided, the obligation pattern is isolated rather than sustained, with the entire funded value occurring in a single year.

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