The record shows one award action in the analysis window, with total obligated amount reported as 0.00 and an average action value of 0. This page provides a concise procurement summary for the vehicle entity tied to vehicle number.
Vehicle Number
Vehicle Number 4740 / GS02P14PCD0032 Federal Contract Action Summary (Last Year)
This page summarizes vehicle number data for Agency ID 4740 under PIID GS02P14PCD0032 for the last full year.
Values are limited to the provided FPDS query inputs and reflect the last full year only.
Overview
For the last full year, the procurement record for vehicle number under PIID GS02P14PCD0032 shows a single award action. Total obligated amount is 0.00, and the average action value is 0. This indicates activity in the record without any reported obligation amount in the provided data.
How to use this page
Use this page as a compact reference for identifying the vehicle record associated with Agency ID 4740 and PIID GS02P14PCD0032. The summary is limited to the reported action count and obligation figures in the analysis window, and it does not add detail beyond the supplied inputs.
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 = '4740' AND content__IDV__contractID__IDVID__PIID = 'GS02P14PCD0032'
AND content__IDV__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__IDV__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 |
|---|---|---|---|---|
| 4740 | PUBLIC BUILDINGS SERVICE | 0.00 | 0.00 | 1 |
Insight
For PIID GS02P14PCD0032 over the 1-year window, all reported obligations are concentrated in a single agency, Public Buildings Service (agency ID 4740). The vehicle shows one award record associated with this agency, with total obligated amount recorded at $0.00. This indicates a highly concentrated but fiscally inactive obligation profile for the period.
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 = '4740' AND content__IDV__contractID__IDVID__PIID = 'GS02P14PCD0032'
AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
AND content__award__vendor__vendorHeader__vendorName != ''
AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 = '4740' AND content__IDV__contractID__IDVID__PIID = 'GS02P14PCD0032'
AND content__IDV__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__IDV__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 |
|---|---|---|---|---|
| 811310 | COMMERCIAL AND INDUSTRIAL MACHINERY AND EQUIPMENT (EXCEPT AUTOMOTIVE AND ELECTRONIC) REPAIR AND MAINTENANCE | 0.00 | 0.00 | 1 |
Insight
Award activity in the 1-year window is entirely concentrated in NAICS 811310, with one award and no obligated dollars recorded. This indicates a highly concentrated and currently non-obligated distribution for this vehicle. With only a single NAICS represented, there is no observable mix or diversification across industry classifications.
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 = '4740' AND content__IDV__contractID__IDVID__PIID = 'GS02P14PCD0032'
AND content__IDV__productOrServiceInformation__productOrServiceCode IS NOT NULL
AND content__IDV__productOrServiceInformation__productOrServiceCode != ''
AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 |
|---|---|---|---|---|
| Z1AA | MAINTENANCE OF OFFICE BUILDINGS | 0.00 | 0.00 | 1 |
Insight
Over the past 1 year, this vehicle has reported one award under PSC Z1AA, Maintenance of Office Buildings, with no obligated dollars recorded. Obligations are fully concentrated in a single PSC line item, indicating no diversification across product or service categories in the provided data.
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 = '4740' AND content__IDV__contractID__IDVID__PIID = 'GS02P14PCD0032'
AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2025 | 0.00 | 0.00 | 1 |
Insight
For PIID GS02P14PCD0032, the 1-year annual trend is fully concentrated in FY 2025. There was 1 award action in the period, with total obligated value at $0.00, indicating no recorded obligation despite the award count. This suggests activity occurred without corresponding financial obligation in the available data.
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.