Vehicle Number

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

Analytical summary of vehicle number AG024BB175000 for agency 12C2 over the last 10 years, showing 16 award actions and $93.18 million obligated.

This page summarizes procurement activity for vehicle number AG024BB175000 under agency 12C2 across the last 10 years. It includes 16 award actions with total obligated value of $93,181,757.07 and an average action value of $5,823,859.82.

Generated at 03/21/2026

Analysis period: Last 10 years

Values reflect the provided FPDS analysis window and may differ slightly between rounded and exact totals.

Agency ID
12C2
PIID
AG024BB175000
Type
Vehicle
Total Obligated
93.18 million
93,181,757.07
Actions
16
Average Action Value
5,823,859.82

Overview

The record for vehicle number AG024BB175000 shows sustained procurement activity within agency 12C2 over the last 10 years. Total obligated value is $93,181,757.07 across 16 award actions, which produces an average action value of $5,823,859.82. The figures indicate a relatively small number of actions concentrated in a substantial total obligation.

How to use this page

Use this page to review the overall scale of obligations tied to vehicle number AG024BB175000 and to compare individual action activity against the full 10-year window. The count of 16 award actions provides a basic measure of procurement frequency, while the exact and rounded obligation totals support both summary reporting and closer review.

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 = 'AG024BB175000'
    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 93,181,757.07 93.18 million 16

Insight

Within the 10-year window for vehicle PIID AG024BB175000, obligations are fully concentrated in a single top agency: the Forest Service (Agency ID 12C2). The agency accounts for $93.18 million across 16 awards, indicating a sustained relationship rather than a one-time action. With no additional agencies listed in the provided rows, the observed spend is entirely concentrated in this agency.

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 = 'AG024BB175000'
        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 = 'AG024BB175000'
    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 93,181,757.07 93.18 million 16

Insight

Obligations under this vehicle are fully concentrated in NAICS 481212, Nonscheduled Chartered Freight Air Transportation. Over the 10-year window, this category accounts for $93.18 million across 16 awards, indicating a narrow and highly focused procurement profile. No other NAICS codes are present in the provided rows, so the observable activity is entirely concentrated in this single transportation category.

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 = 'AG024BB175000'
    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 93,181,757.07 93.18 million 16

Insight

Obligations for PIID AG024BB175000 over the 10-year window are fully concentrated in PSC F003, “Natural Resources/Conservation – Forest-Range Fire Suppression/Presuppression.” This PSC accounts for $93.18 million across 16 awards, indicating repeated procurement activity within a single service category. The distribution suggests a sustained and narrowly focused vehicle profile rather than diversified PSC usage.

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 = 'AG024BB175000'
    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
2017 17,987,266.76 17.99 million 5
2018 21,292,640.15 21.29 million 2
2019 18,496,523.55 18.50 million 4
2020 35,405,326.61 35.41 million 5

Insight

Obligations under PIID AG024BB175000 were concentrated in 2020, which recorded 35.41 million across 5 awards, the highest annual obligated amount in the provided window. The prior years were materially lower and relatively clustered, ranging from 17.99 million to 21.29 million, with award counts varying from 2 to 5. This pattern indicates a one-year spike in funding rather than a steady upward trend, with obligations otherwise remaining in a narrower band.

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.