This page summarizes federal award activity tied to vehicle number 47QFLA19D0008 for Agency ID 4732 across the last 10 years. The record shows 28 award actions with total obligated value of 65.03 million.
Vehicle Number
Vehicle Number 4732 / 47QFLA19D0008 Federal Contract Action Summary (Last 10 Years)
Procurement summary for vehicle number 47QFLA19D0008 showing award activity for Agency ID 4732 over the last 10 years.
Values are based on the provided analysis window and include a total obligated exact amount of 65,025,008.17 and an average action value of 2,322,321.72.
Overview
The procurement record for vehicle number 47QFLA19D0008 under Agency ID 4732 covers the last 10 years and includes 28 award actions. Total obligated value is 65,025,008.17, which is shown on the page in readable form as 65.03 million. The average action value is 2,322,321.72, reflecting the scale of individual award actions within the observed period. This page is intended to support review of the vehicle’s obligation history without adding information beyond the reported award data.
How to use this page
Use this page to review the overall obligation level, action count, and average action value associated with vehicle number 47QFLA19D0008. The summary can help identify the magnitude of procurement activity tied to Agency ID 4732 during the selected period. For detailed analysis, compare the total obligated amount against the number of award actions to understand how value is distributed across the record. The page is limited to the supplied identifiers and financial totals.
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 = '4732' AND content__IDV__contractID__IDVID__PIID = '47QFLA19D0008'
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 |
|---|---|---|---|---|
| 4732 | FEDERAL ACQUISITION SERVICE | 65,025,008.17 | 65.03 million | 28 |
Insight
For PIID 47QFLA19D0008 over the 10-year window, all reported obligation activity in this vehicle is concentrated in a single agency: Federal Acquisition Service. The agency accounts for $65.03 million across 28 awards, indicating repeated use of the vehicle rather than a one-time obligation pattern. This distribution reflects a highly concentrated award footprint with no other agency activity reported in the provided rows.
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 = '4732' AND content__IDV__contractID__IDVID__PIID = '47QFLA19D0008'
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 = '4732' AND content__IDV__contractID__IDVID__PIID = '47QFLA19D0008'
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 |
|---|---|---|---|---|
| 541715 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) | 65,025,008.17 | 65.03 million | 28 |
Insight
Obligations under PIID 47QFLA19D0008 are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). Over the 10-year window, this category accounts for $65.03 million across 28 awards, indicating a narrow and highly concentrated demand profile. The observed distribution suggests sustained use of the vehicle for a single technical service area rather than diversification across multiple NAICS codes.
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 = '4732' AND content__IDV__contractID__IDVID__PIID = '47QFLA19D0008'
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 |
|---|---|---|---|---|
| AJ22 | R&D- GENERAL SCI/TECH: MATHEMATICAL/COMPUTER SCIENCES (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) | 65,025,008.17 | 65.03 million | 28 |
Insight
Obligations are fully concentrated in PSC AJ22, covering 65.03 million across 28 awards over the 10-year window. This indicates a narrow product/service focus for vehicle PIID 47QFLA19D0008, with no evidence of PSC diversification in the provided data. The volume of awards suggests repeated use of the same PSC rather than broad category shifting.
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 = '4732' AND content__IDV__contractID__IDVID__PIID = '47QFLA19D0008'
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 |
|---|---|---|---|
| 2019 | 18,231,109.25 | 18.23 million | 12 |
| 2020 | 42,199,288.14 | 42.20 million | 11 |
| 2021 | 4,594,610.78 | 4.59 million | 5 |
Insight
Obligations are concentrated in 2020, when the vehicle received $42.20 million across 11 awards, well above the other observed years. FY 2019 also reflects meaningful activity at $18.23 million across 12 awards, while FY 2021 declined sharply to $4.59 million across 5 awards. Over the period provided, the pattern indicates a brief peak followed by a steep contraction in both dollars obligated and award volume.
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.