Is Limited Liability Corporation
Boolean or coded indicator showing whether the vendor organization is a limited liability corporation in the IDV vendor site record. A value such as 1/true typically means the vendor entity is structured as an LLC, while 0/false means it is not or the condition is not indicated in the record.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Contractor profiling and competitor analysis
Common Usage
- Filter vendors flagged as LLCs for segmentation analysis
- Compare award patterns by legal business structure
- Support compliance or vendor profile reporting
Common Mistakes
- Assuming 0 always means the vendor is definitively not an LLC rather than unreported or not applicable
- Using the field as a proxy for vendor size, ownership, or socioeconomic status
Query Guidance
Use a conditional filter on the stored boolean/code values after verifying the dataset's encoding, for example WHERE isLimitedLiabilityCorporation = 1 for LLC records. If the extract contains multiple representations such as Y/N, true/false, or numeric codes, normalize them before aggregation and include an explicit NULL check to separate missing from negative values.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__isLimitedLiabilityCorporation AS is_limited_liability_corporation
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__isLimitedLiabilityCorporation IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__isLimitedLiabilityCorporation AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__isLimitedLiabilityCorporation IS NOT NULL
GROUP BY flag_value
ORDER BY record_count DESC
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.