Vehicle Number

Vehicle Number 12C2 / 12024B20G5026 Federal Contract Action Summary (Last 5 Years)

Federal procurement record for vehicle number under agency ID 12C2 and PIID 12024B20G5026, showing activity in the last 5 years.

This page summarizes the vehicle-level procurement record for vehicle number associated with agency ID 12C2 and PIID 12024B20G5026. The analysis window covers the last 5 years and shows 2 award actions with zero obligated value.

Generated at 03/21/2026

Analysis period: Last 5 years

Reported obligated amounts are 0.00, with an exact total of 0 and an average action value of 0.

Agency ID
12C2
PIID
12024B20G5026
Type
Vehicle
Total Obligated
0.00
0.00
Actions
2
Average Action Value
0.00

Overview

The record identifies a vehicle-level entry labeled vehicle number for agency ID 12C2 and PIID 12024B20G5026. Over the last 5 years, the page reflects 2 award actions and no obligated dollars. The zero-value totals indicate that the recorded action activity did not result in obligated funding in the provided data. This summary is limited to the fields supplied and does not infer contract scope or performance details.

How to use this page

Use this page to review the basic procurement profile for the vehicle record and confirm the associated PIID and agency ID. The action count and obligated totals provide a quick check for whether the record contains financial activity in the selected period. For deeper analysis, compare this entry with related FPDS records tied to agency ID 12C2 or the same PIID. The current data supports a narrow summary only: 2 actions, 0.00 obligated, and an average action value of 0.

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 = '12C2' AND content__IDV__contractID__IDVID__PIID = '12024B20G5026'
    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
12C2 FOREST SERVICE 0.00 0.00 2

Insight

Over the 5-year window, obligations under PIID 12024B20G5026 are fully concentrated within the Forest Service (12C2), which accounts for all recorded awards in this view. The agency has 2 awards associated with the vehicle, but total obligated dollars remain at 0.00, indicating activity with no obligated funding captured in the provided data. This suggests a narrow distribution of activity and no observable obligation trend for this vehicle within 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 = '12C2' AND content__IDV__contractID__IDVID__PIID = '12024B20G5026'
        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 = '12C2' AND content__IDV__contractID__IDVID__PIID = '12024B20G5026'
    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
481212 NONSCHEDULED CHARTERED FREIGHT AIR TRANSPORTATION 0.00 0.00 2

Insight

Across the 5-year window for vehicle 12024B20G5026 under agency 12C2, obligations are concentrated entirely in NAICS 481212, Nonscheduled Chartered Freight Air Transportation. This NAICS accounts for 2 awards with zero total obligated dollars, indicating activity occurred but no recorded obligation value in the provided data. The distribution is fully concentrated in a single NAICS with no diversification across other industries.

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 = '12C2' AND content__IDV__contractID__IDVID__PIID = '12024B20G5026'
    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
F003 NATURAL RESOURCES/CONSERVATION- FOREST-RANGE FIRE SUPPRESSION/PRESUPPRESSION 0.00 0.00 2

Insight

Over the 5-year window, this vehicle is concentrated entirely in PSC F003, indicating a single-product-service profile tied to natural resources and fire suppression/presuppression. The activity comprises 2 awards with no obligated dollars recorded, so the observed distribution reflects transactional coverage rather than spending volume. This pattern suggests the vehicle has been used for limited, specialized ordering within one PSC category.

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 = '12C2' AND content__IDV__contractID__IDVID__PIID = '12024B20G5026'
    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
2023 0.00 0.00 1
2024 0.00 0.00 1

Insight

Over the 5-year window, this vehicle has no recorded obligations in the provided annual trend rows, despite one award counted in each year. Obligations are fully concentrated at $0.00 in both 2023 and 2024, indicating no obligated funding activity for this PIID in the years reported. The pattern is flat and evenly distributed across the two years, with no year-over-year variation in obligated value.

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.