This page provides a procurement view of the vehicle number associated with agency ID 1900 and PIID SAQMMA11D0074. The record set for the last 5 years shows 1 award action and no obligated dollars.
Vehicle Number
Vehicle Number 1900 / SAQMMA11D0074 Federal Contract Action Summary (Last 5 Years)
FPDS summary page for vehicle number under agency ID 1900 and PIID SAQMMA11D0074, covering the last 5 years.
Total obligated amount is 0.00, with an exact total of 0 and an average action value of 0.
Overview
The available FPDS record for this vehicle number is limited to a single award action in the last 5 years. Reported obligated funding is 0.00, with no readable obligated value recorded and an average action value of 0.
How to use this page
Use this page to identify the procurement record tied to vehicle number, agency ID 1900, and PIID SAQMMA11D0074. It is most useful as a lookup reference when comparing contract identifiers, award activity, and obligated amounts.
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 = 'SAQMMA11D0074'
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 | 0.00 | 0.00 | 1 |
Insight
Within the 5-year window for vehicle PIID SAQMMA11D0074, all reported award activity is concentrated in a single agency: the Department of State (Agency ID 1900). That agency accounts for the only recorded award, with one award and $0.00 total obligated. This indicates highly concentrated but financially inactive usage of the vehicle in the available 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 = 'SAQMMA11D0074'
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 = 'SAQMMA11D0074'
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 |
|---|---|---|---|---|
| 541330 | ENGINEERING SERVICES | 0.00 | 0.00 | 1 |
Insight
The vehicle’s NAICS profile over the 5-year window is fully concentrated in 541330, Engineering Services, with one award recorded and $0.00 obligated. This indicates a single-NAICS vehicle structure with no observed obligation activity in the provided period.
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 = 'SAQMMA11D0074'
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 |
|---|---|---|---|---|
| R799 | SUPPORT- MANAGEMENT: OTHER | 0.00 | 0.00 | 1 |
Insight
The vehicle has a single PSC reported in the 5-year window: R799, Support-Management: Other, associated with one award and no obligated dollars. This indicates complete PSC concentration in a non-obligated record, with no evidence of distribution across additional product or service codes. The absence of obligated value limits trend interpretation and suggests the PSC classification is not tied to reported financial activity in this vehicle period.
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 = 'SAQMMA11D0074'
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 |
|---|---|---|---|
| 2021 | 0.00 | 0.00 | 1 |
Insight
Within the 5-year window, this vehicle shows no obligated dollars in 2021 despite one reported award, indicating a single-obligation year with no recorded spend. The annual trend is therefore highly concentrated and does not reflect distributed obligation activity across the period provided. With only one year reported and no obligated value, the available data is insufficient to indicate a broader 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.