Award Number

Award Number 1900 / 19AQMM23F0766 Federal Contract Action Summary (Last Year)

Award number 19AQMM23F0766 for agency 1900 shows 11 recorded actions in the last full year with $303.81 million obligated.

This page summarizes federal procurement activity for award 19AQMM23F0766 under agency ID 1900. In the last full year, the award reached $303,813,313 in total obligated value across 11 actions.

Generated at 03/20/2026

Analysis period: Last full year

Values reflect the provided analysis window and may differ from other reporting periods or later contract updates.

Agency ID
1900
PIID
19AQMM23F0766
Type
Award
Total Obligated
303.81 million
303,813,313.00
Actions
11
Average Action Value
27,619,392.09

Overview

Award 19AQMM23F0766 is associated with agency ID 1900 and recorded $303,813,313 in obligated value during the last full year. The award includes 11 actions, with an average action value of $27,619,392.09.

How to use this page

Use this page to review the award-level activity tied to PIID 19AQMM23F0766 within the selected analysis window. It supports quick comparison of total obligated value, action count, and average action size for procurement analysis.

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 = '1900' AND content__award__awardID__awardContractID__PIID = '19AQMM23F0766'
    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
1900 STATE, DEPARTMENT OF 303,813,313.00 303.81 million 11

Insight

Within the 1-year window for award 19AQMM23F0766, all observed obligations are concentrated in a single top agency: the Department of State (agency 1900). That agency accounts for $303.81 million across 11 awards, indicating a highly concentrated obligation profile rather than a broad distribution across agencies.

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 = '1900' AND content__award__awardID__awardContractID__PIID = '19AQMM23F0766'
        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
XATOR CORPORATION 393S5 303,813,313.00 303.81 million 11

Insight

Vendor obligations for PIID 19AQMM23F0766 are fully concentrated with XATOR CORPORATION (CAGE 393S5), which accounts for $303.81 million across 11 awards in the 1-year window. This indicates a highly concentrated vendor profile with no diversification among top vendors in the provided data. The distribution suggests this award activity is dominated by a single supplier relationship.

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 = '1900' AND content__award__awardID__awardContractID__PIID = '19AQMM23F0766'
    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 303,813,313.00 303.81 million 11

Insight

Obligations for PIID 19AQMM23F0766 are fully concentrated in NAICS 561210, Facilities Support Services, with $303.81 million across 11 awards in the 1-year window. This indicates a narrow service profile and suggests the award activity is centered on a single procurement category rather than a diversified NAICS mix. The award count, while limited, is paired with a very large obligated amount, reflecting high-dollar support services activity within this NAICS.

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 = '1900' AND content__award__awardID__awardContractID__PIID = '19AQMM23F0766'
    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
V121 TRANSPORTATION/TRAVEL/RELOCATION- TRANSPORTATION: AIR CHARTER 303,813,313.00 303.81 million 11

Insight

Over the past 1 year, obligations are fully concentrated in PSC V121, Transportation/Travel/Relocation – Transportation: Air Charter. This PSC accounts for $303.81 million across 11 awards, indicating a high degree of spend concentration in a single service category. The distribution suggests this award activity is narrowly focused rather than diversified across multiple PSCs.

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 = '1900' AND content__award__awardID__awardContractID__PIID = '19AQMM23F0766'
    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 303,813,313.00 303.81 million 11

Insight

For the 1-year window, this award account shows 2025 total obligations of $303.81 million across 11 awards. Obligations are highly concentrated in a single year, indicating that observed activity is concentrated rather than distributed over multiple years. The average obligation per award is roughly $27.62 million, suggesting relatively large individual actions 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.