Generic String10
A free-text string field in the Award > Generic Tags section of the FPDS record. It is one of a set of reusable generic string slots intended to store supplemental award-level text that does not have a fixed semantic meaning in the core schema.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- filtering awards by source-specific tags
- grouping records for custom analytics
- capturing auxiliary descriptors in reusable workflows
Common Mistakes
- assuming the field has a universal FPDS-defined meaning
- using it as a coded value without validating observed contents
Query Guidance
Use string predicates such as =, LIKE, IN, and TRIM/LOWER normalization for analysis. For aggregation, group only after confirming the field’s population pattern and distinct values; avoid hard-coding business logic unless the source system documentation defines the tag semantics.
SQL Examples
Preview values
SELECT
content__award__genericTags__genericStrings__genericString10 AS generic_string10
FROM fpds.data
WHERE content__award__genericTags__genericStrings__genericString10 IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__genericTags__genericStrings__genericString10 AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.