Generic String06
A free-text generic string field stored within the IDV record's Generic Tags section. It is a reusable attribute slot rather than a standard procurement descriptor, and its meaning depends on the agency or reporting workflow that populated it.
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-specific tags
- Grouping awards by a reused internal label or code
- Supporting workflow-specific reconciliation or enrichment
Common Mistakes
- Assuming the field has a universal FPDS-defined meaning
- Interpreting a code value without checking the populated value set or related fields
Query Guidance
Use this field as a text attribute for exact-match or pattern-based filters, and validate observed values before aggregating. In SQL, consider TRIM/UPPER normalization and a DISTINCT review of populated values to confirm whether it functions as a code, label, or free-text tag.
SQL Examples
Preview values
SELECT
content__IDV__genericTags__genericStrings__genericString06 AS generic_string06
FROM fpds.data
WHERE content__IDV__genericTags__genericStrings__genericString06 IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__genericTags__genericStrings__genericString06 AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.