Usa Committee
para describir un comité político. El
Elemento ElectionReport
Incluye CommitteeCollection
, que contiene el conjunto completo de objetos del comité
en un feed del comité.
Atributos
En la siguiente tabla, se muestran los atributos de Committee
:
Atributo | ¿Es obligatorio? | Tipo | Descripción |
---|---|---|---|
objectId |
Obligatorio | ID |
Es el identificador interno único que usan otros elementos como referencia. este elemento. |
Elementos
En la siguiente tabla, se muestran los elementos de Committee
:
Elemento | Multiplicidad | Tipo | Descripción |
---|---|---|---|
AffiliationCollection |
1 | Affiliation |
Contiene las afiliaciones de un comité. Una afiliación se utiliza para indicar una afiliación entre un comité y una persona o un partido. Una afiliación debe contener un PersonId o un PartyId, pero no ambos. |
CommitteeClassificationCollection |
1 |
CommitteeClassification |
Contiene las clasificaciones de un comité. |
CommitteeScopeGpUnitIds |
1 | IDREFS |
Contiene los elementos |
ContactInformation |
0 o 1 | ContactInformation |
Proporciona varias formas de información de contacto. Este elemento debe contener un
URI anotado
que tenga una anotación |
ExternalIdentifiers |
1 | ExternalIdentifiers |
Asocia un ID con el comité. R identificador estable es obligatorio. El elemento |
Name |
1 | InternationalizedText |
Nombre oficial del comité. |
Tipos adicionales para ExternalIdentifiers
En el elemento ExternalIdentifiers
de Committee
, proporciona datos adicionales.
con un Type
de other
, junto con valores para OtherType
y Value
. El
La siguiente tabla muestra valores posibles para estos elementos:
Identificador | Type |
OtherType |
Valores de ejemplo | Multiplicidad | Descripción |
---|---|---|---|---|---|
EIN del IRS (número de identificación fiscal) | other |
ein |
012345678 |
0 o 1 |
El EIN (número de identificación fiscal) del IRS de un comité. |
ID del comité de la FEC | national-level |
N/A | C00100005 |
0 o 1 |
ID del comité de la FEC de un comité. |
ID del comité estatal | state-level |
N/A | va-id-123 |
0 o más |
ID del Comité Estatal de un comité. |
Ejemplos
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>