Generic String10
Free-text value stored in the Other Transaction Award generic string slot 10. It is one of the reusable generic tag fields in the FPDS record and may hold a program-specific label, descriptor, or analyst-defined text depending on agency reporting practice.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filtering awards by an agency-specific tag or label
- Grouping records for custom reporting logic
- Joining to internal mapping tables for interpreted values
Common Mistakes
- Assuming the field has government-wide standardized semantics
- Using the text as a code without validating observed values
Query Guidance
Use exact matches for known values, but first normalize case, trim whitespace, and profile distinct values to understand agency usage. In SQL, prefer COALESCE(NULLIF(TRIM(field), ''), 'UNSPECIFIED') for reporting, and use LIKE or ILIKE only when you have confirmed a stable text pattern.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__genericTags__genericStrings__genericString10 AS generic_string10
FROM fpds.data
WHERE content__OtherTransactionAward__genericTags__genericStrings__genericString10 IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__genericTags__genericStrings__genericString10 AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.