Generic String06
A free-text generic string field on an Other Transaction Award record, stored in Generic Tags as the sixth reusable string slot. It holds user-defined or system-populated text rather than a standardized FPDS code, so its meaning depends on the specific implementation or reporting workflow.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Custom grouping of Other Transaction Awards
- Agency-specific filtering or tagging
- Supplemental classification in reusable analysis workflows
Common Mistakes
- Assuming the field has a government-wide standard meaning
- Using it without checking how the source agency populates Generic String06
Query Guidance
Use this field in SQL as a text filter or grouping key only after profiling distinct values and confirming population rules. Compare it with adjacent generic string fields when looking for related tags, and use exact-match or normalized string logic rather than semantic inference from the field name alone.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__genericTags__genericStrings__genericString06 AS generic_string06
FROM fpds.data
WHERE content__OtherTransactionAward__genericTags__genericStrings__genericString06 IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__genericTags__genericStrings__genericString06 AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__genericTags__genericStrings__genericString06 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.