Individual Order Limit
Numeric or text value that records the maximum amount allowed for a single order placed under an IDV. It represents the per-order ceiling established in the contract marketing data for that vehicle.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Compare ordering limits across IDVs
- Filter vehicles by small-order or high-value ordering capacity
- Support classification of contract structure and procurement strategy
Common Mistakes
- Confusing individual order limit with total obligated or ceiling value
- Using the raw string without casting or cleaning in numeric analysis
Query Guidance
In SQL, trim the field and convert it to a numeric type when values are standardized, for example with CAST or TRY_CAST, before filtering, grouping, or summarizing. Exclude or separately flag blanks, zeros, and nonnumeric strings, and do not use it as a measure of awarded dollars unless it has been validated against the source semantics.
SQL Examples
Preview values
SELECT
content__IDV__contractMarketingData__individualOrderLimit AS individual_order_limit
FROM fpds.data
WHERE content__IDV__contractMarketingData__individualOrderLimit IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__contractMarketingData__individualOrderLimit AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__contractMarketingData__individualOrderLimit IS NOT NULL
GROUP BY value
ORDER BY record_count DESC
LIMIT 25
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.