Generic String01
A free-text generic string value stored in the Other Transaction Award generic tags section. It is a reusable attribute field that can carry an implementation-specific label, date, identifier, or other text value depending on how the award record was populated.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filtering awards by a locally defined tag or segment
- Grouping records for custom reporting or dashboard logic
- Capturing a date, identifier, or label not covered by standard FPDS fields
Common Mistakes
- Assuming a fixed government-wide semantic meaning for the value
- Using the field in analysis without validating whether the content is text, date-like, or coded
Query Guidance
Use direct string filters, pattern checks, or casting only after confirming the observed format. In SQL, apply LIKE, IN, or regex-style validation for categorization; if the values are date-like, cast carefully and handle invalid rows defensively.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__genericTags__genericStrings__genericString01 AS generic_string01
FROM fpds.data
WHERE content__OtherTransactionAward__genericTags__genericStrings__genericString01 IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__genericTags__genericStrings__genericString01 AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.