Is Partnership or Limited Liability Partnership
Boolean or coded indicator showing whether the vendor’s business type is a partnership or limited liability partnership within the IDV vendor site details hierarchy. It is a classification flag tied to the vendor business type structure, not a measure of performance or award activity.
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 classified as partnerships or LLPs
- Segment supplier populations by legal form
- Support compliance or ownership analysis by entity type
Common Mistakes
- Using the flag as a proxy for small business status or socioeconomic designation
- Assuming a 0 value means the vendor is not a partnership when it may also reflect missing or unreported data depending on the source
Query Guidance
In SQL, filter explicitly on the field’s observed truthy value when identifying partnerships or LLPs, and verify whether the source stores the flag as 0/1, Y/N, or another code. When possible, join or inspect companion description fields and treat nulls separately from false values to avoid misclassification.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isPartnershipOrLimitedLiabilityPartnership AS is_partnership_or_limited_liability_partnership
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isPartnershipOrLimitedLiabilityPartnership IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isPartnershipOrLimitedLiabilityPartnership AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isPartnershipOrLimitedLiabilityPartnership 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.