Vehicle Number

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

Federal procurement summary for vehicle number under Agency ID 12C2, PIID 12024B20G5026, covering the last 10 years.

This page summarizes award activity tied to vehicle number for PIID 12024B20G5026 within Agency ID 12C2 over the last 10 years. The record shows 10 award actions with total obligations of 55.82 million dollars.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals are based on readable obligations of 55,815,663.71 across 10 award actions, with an average action value of 5,581,566.37.

Agency ID
12C2
PIID
12024B20G5026
Type
Vehicle
Total Obligated
55.82 million
55,815,663.71
Actions
10
Average Action Value
5,581,566.37

Overview

The procurement record for vehicle number under PIID 12024B20G5026 spans 10 award actions in the last 10 years. Total obligated dollars equal 55,815,663.71, which averages 5,581,566.37 per action. This page presents the award history at the entity level for Agency ID 12C2.

How to use this page

Use this page to review the obligation total, action count, and average award value associated with this vehicle record. It is suitable for tracking the scale of activity over the analysis window without adding assumptions about contract purpose or performance.

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 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
12C2 FOREST SERVICE 55,815,663.71 55.82 million 10

Insight

Over the 10-year window, obligations for PIID 12024B20G5026 are fully concentrated in the Forest Service (agency ID 12C2), which accounts for the entire reported total. The award record reflects 10 awards totaling $55.82 million, indicating sustained use of this vehicle by a single agency rather than broad interagency distribution. This concentration suggests the vehicle is agency-specific in practice within the reported 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 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 = '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 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
481212 NONSCHEDULED CHARTERED FREIGHT AIR TRANSPORTATION 55,815,663.71 55.82 million 10

Insight

Over the 10-year window, obligations for PIID 12024B20G5026 are fully concentrated in NAICS 481212, Nonscheduled Chartered Freight Air Transportation. This category accounts for $55.82 million across 10 awards, indicating repeated use of the same freight air transportation scope rather than a broad mix of NAICS activity. The concentration suggests this vehicle has been used consistently for a single service area.

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 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
F003 NATURAL RESOURCES/CONSERVATION- FOREST-RANGE FIRE SUPPRESSION/PRESUPPRESSION 55,815,663.71 55.82 million 10

Insight

Obligations for PIID 12024B20G5026 are fully concentrated in PSC F003, with $55.82 million obligated across 10 awards over the 10-year window. This indicates a narrowly focused vehicle aligned to natural resources conservation and forest/range fire suppression and presuppression requirements. The award pattern suggests repeated use of the vehicle for the same requirement type rather than a broad distribution across multiple PSCs.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2020 55,815,663.71 55.82 million 8
2023 0.00 0.00 1
2024 0.00 0.00 1

Insight

Obligations are highly concentrated in 2020, when the vehicle recorded $55.82 million across 8 awards. Activity then drops to zero obligated dollars in 2023 and 2024, with 1 award reported in each year. Over the 10-year window provided, this indicates a single-year funding spike followed by minimal recent obligation activity on the vehicle.

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.