Generic String06
Free-text value stored in the Other Transaction IDV generic tag slot 06. It is an optional attribute field, so its meaning depends on the agency's local tagging convention rather than a fixed FPDS code list.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Agency-specific categorization of an Other Transaction IDV
- Filtering award sets by a custom tagging convention
- Joining or grouping records for internal reporting workflows
Common Mistakes
- Assuming the value has a government-wide standard meaning
- Using the field without validating the agency's tag definition or observed value patterns
Query Guidance
Use this field as a text filter or grouping attribute after profiling distinct values and null frequency. In SQL, normalize case and trim whitespace when comparing values, and treat it as optional free text rather than a join key unless your local data dictionary defines a stable coding scheme.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__genericTags__genericStrings__genericString06 AS generic_string06
FROM fpds.data
WHERE content__OtherTransactionIDV__genericTags__genericStrings__genericString06 IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__genericTags__genericStrings__genericString06 AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__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.