Generic String01
Free-text generic string stored in the Other Transaction IDV generic tags section as the first generic string slot. It is an attribute-level field used to carry custom, program-specific, or workflow-specific text rather than a standard FPDS coded value.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Custom filtering on agency-populated text
- Grouping records by a supplemental business tag
- Searching for embedded dates, IDs, or workflow markers
Common Mistakes
- Assuming the value has a universal FPDS definition
- Joining or grouping without first validating the agency-specific pattern
Query Guidance
Use exact-match or pattern-based filters only after profiling observed values. In SQL, consider TRIM/LOWER normalization for text searches, and use CAST or parsing functions only if you confirm the field consistently stores date-like or numeric text; otherwise treat it as an opaque string.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__genericTags__genericStrings__genericString01 AS generic_string01
FROM fpds.data
WHERE content__OtherTransactionIDV__genericTags__genericStrings__genericString01 IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__genericTags__genericStrings__genericString01 AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__genericTags__genericStrings__genericString01 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.