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.

Family: IDV
Category: Vendor Site Details
Data Type: boolean_or_code_flag
Semantic Type: flag
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__isLimitedLiabilityCorporation
Title
Is Limited Liability Corporation
FPDS Path
IDV/vendor/vendorSiteDetails/vendorOrganizationFactors/isLimitedLiabilityCorporation
Description
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.
Business Meaning
This field helps analysts segment award and vendor populations by legal business structure, which can be relevant for vendor profiling, market characterization, and compliance-related review. It can also support analysis of how different organizational forms participate in federal contracting and whether certain award patterns differ by entity type.
Example Value
0
Observed Non-Null Count
5,862,557

FPDS Compare

FPDS Query Variable
content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__isLimitedLiabilityCorporation
FPDS XML Path
IDV/vendor/vendorSiteDetails/vendorOrganizationFactors/isLimitedLiabilityCorporation
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'IDV/vendor/vendorSiteDetails/vendorOrganizationFactors/isLimitedLiabilityCorporation' into the SQL-ready variable 'content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__isLimitedLiabilityCorporation'.

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.