Utilisez Committee
pour décrire un comité politique. La
Élément ElectionReport
inclut CommitteeCollection
, qui contient l'ensemble complet des objets Committee ;
dans un flux de comité.
Attributs
Le tableau suivant présente les attributs de Committee
:
Attribut | Requis ? | Type | Description |
---|---|---|---|
objectId |
Obligatoire | ID |
Identifiant interne unique utilisé par d'autres éléments pour faire référence pour cet élément. |
Éléments
Le tableau suivant présente les éléments pour Committee
:
Élément | Multiplicité | Type | Description |
---|---|---|---|
AffiliationCollection |
1 | Affiliation |
Contient les affiliations d'un comité. Une affiliation est utilisée pour indiquer une affiliation entre un comité et une personne ou un parti. Une affiliation doit contenir un PersonId ou un PartyId, mais pas les deux. |
CommitteeClassificationCollection |
1 |
CommitteeClassification |
Contient les classifications d'un comité. |
CommitteeScopeGpUnitIds |
1 | IDREFS |
Contient les éléments |
ContactInformation |
0 ou 1 | ContactInformation |
Fournit différentes formes de coordonnées. Cet élément doit contenir une
URI annoté
annotée avec |
ExternalIdentifiers |
1 | ExternalIdentifiers |
Associe un ID au comité. A identifiant stable est obligatoire. L'élément |
Name |
1 | InternationalizedText |
Nom officiel du comité. |
Types supplémentaires pour les identifiants externes
Fournissez des données supplémentaires dans l'élément ExternalIdentifiers
de Committee
.
avec un Type
de other
, ainsi que des valeurs pour OtherType
et Value
. La
le tableau suivant présente les valeurs possibles pour ces éléments:
Identifiant | Type |
OtherType |
Exemples de valeurs | Multiplicité | Description |
---|---|---|---|---|---|
Numéro EIN de l'IRS (numéro d'identification fiscale) | other |
ein |
012345678 |
0 ou 1 |
Numéro EIN (numéro d'identification fiscale) IRS d'un comité. |
Identifiant de comité FEC | national-level |
N/A | C00100005 |
0 ou 1 |
Identifiant d'un comité FEC. |
Pièce d'identité du comité d'État | state-level |
N/A | va-id-123 |
0 ou plus |
Pièce d'identité d'un comité d'État |
Exemples
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>