This page presents analyst-focused information for award number 19AQMM23F0766 and Agency ID 1900. Over the last 5 years, the award shows 26 actions with total obligations of $2.33 billion and an average action value of $89.5 million.
Award Number
Award Number 1900 / 19AQMM23F0766 Federal Contract Action Summary (Last 5 Years)
Federal procurement award page for PIID 19AQMM23F0766 under Agency ID 1900, summarizing obligations and actions over the last 5 years.
Totals reflect the last 5 years of available award activity and use the exact obligated amount of 2,326,916,907.41.
Overview
The award record for PIID 19AQMM23F0766 is associated with Agency ID 1900 and includes 26 recorded actions in the last 5 years. Total obligated amount is 2,326,916,907.41, which rounds to $2.33 billion, with an average action value of 89,496,804.13.
How to use this page
Use this page to review award-level spending patterns, action frequency, and obligation scale for PIID 19AQMM23F0766. It is suited to high-level procurement analysis, trend review, and quick validation of award activity within Agency ID 1900.
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 5 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 | 2,326,916,907.41 | 2.33 billion | 26 |
Insight
All recorded obligations in the 5-year window are concentrated in the Department of State, which accounts for $2.33 billion across 26 awards. This indicates a highly focused obligation pattern for PIID 19AQMM23F0766, with no evidence in the provided data of distribution across other agencies. The award volume is modest relative to the obligation total, suggesting a small number of large-dollar awards rather than broad dispersal.
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 5 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 | 2,326,916,907.41 | 2.33 billion | 26 |
Insight
Over the 5-year window for award 19AQMM23F0766, obligations are fully concentrated with a single vendor, XATOR CORPORATION (CAGE 393S5). The vendor received 26 awards totaling $2.33 billion, indicating a highly concentrated award distribution with no diversification across other vendors in the provided data. This pattern suggests sustained reliance on one contractor for this award line.
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 5 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 | 2,326,916,907.41 | 2.33 billion | 26 |
Insight
Obligations for PIID 19AQMM23F0766 are fully concentrated in NAICS 561210, Facilities Support Services, with $2.33 billion obligated across 26 awards over the 5-year window. This indicates a highly focused procurement profile with no observable diversification across other NAICS codes in the provided data. The concentration suggests the award activity is centered on a single service category rather than a broad mix of acquisitions.
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 5 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 | 2,326,916,907.41 | 2.33 billion | 26 |
Insight
Over the past 5 years, PSC V121 accounted for 2.33 billion in obligations across 26 awards, indicating a highly concentrated spend profile for air charter transportation. The average obligation per award is substantial, suggesting a limited number of large-value actions rather than broad distribution across many smaller awards. This concentration may warrant closer review of requirement aggregation and vendor reliance within the award’s transportation/travel portfolio.
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 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2023 | 750,000,000.00 | 750.00 million | 7 |
| 2024 | 1,273,103,594.41 | 1.27 billion | 8 |
| 2025 | 303,813,313.00 | 303.81 million | 11 |
Insight
Obligations for PIID 19AQMM23F0766 were concentrated in 2024, which accounts for the highest annual obligation at 1.27 billion across 8 awards. By comparison, 2023 recorded 750.00 million over 7 awards, and 2025 shows a lower obligation level of 303.81 million despite the highest award count in the period at 11. This pattern indicates a decline in obligated dollars after a 2024 peak, with activity in 2025 distributed across more awards but at materially smaller dollar value per award.
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.