Generic String10
Free-text generic string slot 10 within the Other Transaction IDV generic tags structure. It is an optional attribute field intended to carry supplemental procurement text when the record needs additional machine-readable tagging beyond standard FPDS fields.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- custom tagging
- agency-specific categorization
- filtering and grouping records
Common Mistakes
- assuming it has a government-wide standard meaning
- using raw values without reviewing local coding conventions
Query Guidance
Use SELECT, DISTINCT, and GROUP BY to profile observed values before analytical use; apply CASE mapping or lookup tables only after confirming agency-specific semantics. Filter for non-null values when identifying records that use custom tagging, and avoid aggregating it as a numeric or coded measure.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__genericTags__genericStrings__genericString10 AS generic_string10
FROM fpds.data
WHERE content__OtherTransactionIDV__genericTags__genericStrings__genericString10 IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__genericTags__genericStrings__genericString10 AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__genericTags__genericStrings__genericString10 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.