使用 Committee
来描述政治委员会。通过
ElectionReport
元素
包括 CommitteeCollection
,后者包含完整的 Committee 对象集
。
属性
下表显示了 Committee
的属性:
属性 | 是否必需? | 类型 | 说明 |
---|---|---|---|
objectId |
必填 | ID |
供其他元素引用的唯一内部标识符 该元素。 |
元素
下表显示了 Committee
的元素:
元素 | 多样性 | 类型 | 说明 |
---|---|---|---|
AffiliationCollection |
1 | Affiliation |
包含委员会的从属关系。“联属关系”用于表示委员会与个人或政党之间存在某种联属关系。关联商户必须包含 PersonId 或 PartyId,但不能同时包含两者。 |
CommitteeClassificationCollection |
1 |
CommitteeClassification |
包含委员会的分类。 |
CommitteeScopeGpUnitIds |
1 | IDREFS |
包含任意属性中的 |
ContactInformation |
0 或 1 | ContactInformation |
提供各种形式的联系信息。 该元素必须包含一个
带注解的 URI
使用 |
ExternalIdentifiers |
1 | ExternalIdentifiers |
将 ID 与委员会相关联。答 稳定标识符 为必填字段。
|
Name |
1 | InternationalizedText |
委员会的官方名称。 |
ExternalIdentifiers 的其他类型
在 Committee
的 ExternalIdentifiers
元素中,提供其他数据
Type
为 other
,以及 OtherType
和 Value
的值。通过
下表显示了这些元素的可能值:
标识符 | Type |
OtherType |
示例值 | 多样性 | 说明 |
---|---|---|---|---|---|
IRS EIN(税号) | other |
ein |
012345678 |
0 或 1 |
委员会的 IRS EIN(税号)。 |
FEC 委员会 ID | national-level |
不适用 | C00100005 |
0 或 1 |
委员会的 FEC 委员会 ID。 |
州委员会 ID | state-level |
不适用 | va-id-123 |
0 或更多 |
委员会的州委员会 ID。 |
示例
XML
<Committee objectId="com001"> <AffiliationCollection> <Affiliation> <EndDate>2023-02-22</EndDate> <PartyId>par0001</PartyId> <StartDate>2023-01-01</StartDate> </Affiliation> <Affiliation> <EndDate>2023-02-22</EndDate> <PersonId>per10861a</PersonId> <StartDate>2023-01-01</StartDate> </Affiliation> </AffiliationCollection> <CommitteeClassificationCollection> <CommitteeClassification> <EndDate>2023-02-22</EndDate> <NormalizedDesignation>authorized</NormalizedDesignation> <NormalizedType>candidate</NormalizedType> <RawDesignation>C</RawDesignation> <RawType>A</RawType> <ScopeLevel>ru000us</ScopeLevel> <StartDate>2023-01-01</StartDate> </CommitteeClassification> <CommitteeClassification> <EndDate>2023-02-22</EndDate> <NormalizedDesignation>authorized</NormalizedDesignation> <NormalizedType>candidate</NormalizedType> <RawDesignation>va_specific_type_as_string</RawDesignation> <RawType>va_specific_type_as_string</RawType> <ScopeLevel>ru0002</ScopeLevel> <StartDate>2023-01-01</StartDate> </CommitteeClassification> </CommitteeClassificationCollection> <CommitteeScopeGpUnitIds>ru000us ru0002</CommitteeScopeGpUnitIds> <ContactInformation> <Uri Annotation="official-website">http://www.fake.url</Uri> </ContactInformation> <ExternalIdentifiers> <ExternalIdentifier> <Type>other</Type> <OtherType>stable</OtherType> <Value>stable-committee-id-001</Value> </ExternalIdentifier> <ExternalIdentifier> <Type>national-level</Type> <Value>fec-committee-id-123</Value> </ExternalIdentifier> <ExternalIdentifier> <Type>state-level</Type> <Value>va-committee-id-123</Value> </ExternalIdentifier> <ExternalIdentifier> <Type>other</Type> <OtherType>ein</OtherType> <Value>12-3456789</Value> </ExternalIdentifier> </ExternalIdentifiers> <Name> <Text language="en">Example Committee</Text> </Name> </Committee>