政治委員会を記述するには、Committee
を使用します。「
ElectionReport
要素
CommitteeCollection
には、Committee オブジェクトのすべてのセットが含まれます。
報告できます
属性
次の表に、Committee
の属性を示します。
属性 | 必須かどうか | 型 | 説明 |
---|---|---|---|
objectId |
必須 | ID |
他の要素が参照するために使用される一意の内部識別子 この要素を使用します。 |
要素
次の表に、Committee
の要素を示します。
要素 | 重複 | タイプ | 説明 |
---|---|---|---|
AffiliationCollection |
1 | Affiliation |
委員会の提携関係が含まれます。アフィリエーションは、委員会と個人または政党との間の関係性を示すために使用します。アフィリエーションには PersonId または PartyId のいずれかを含める必要があります。両方を含めることはできません。 |
CommitteeClassificationCollection |
1 |
CommitteeClassification |
委員会の分類が含まれます。 |
CommitteeScopeGpUnitIds |
1 | IDREFS |
任意の |
ContactInformation |
0 または 1 | ContactInformation |
さまざまな形式の連絡先情報を提供します。 この要素には
アノテーション付き URI
正規 URL を指定するために |
ExternalIdentifiers |
1 | ExternalIdentifiers |
|
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>