PartyLeadership
エンティティを使用して、さまざまな
特定のタイプの
Party
。
属性
次の表に、PartyLeadership
要素の属性を示します。
属性 | 必須かどうか | 型 | 説明 |
---|---|---|---|
objectId |
必須 | ID |
他の要素が参照するために使用される一意の内部識別子 この要素を使用します。 |
要素
次の表に、PartyLeadership
の要素を示します。
要素 | 重複 | タイプ | 説明 |
---|---|---|---|
EndDate |
0 または 1 | PartialDate |
当事者のリーダーの役割に就いた期間の終了日。必要があります。 リーダーの在職期間が進行中の場合は、未指定のままとなります。 |
ExternalIdentifiers |
1 | ExternalIdentifiers |
ID を政党のリーダーに関連付けます。 固定識別子 は必須です。 |
PartyLeaderId |
1 | IDREF |
一意の識別子
Person の保持者
できます。 |
StartDate |
0 または 1 | PartialDate |
その人が政党のリーダーの役割に就いた時間の開始日。必要 日付が不明な場合は指定しないでください。 |
Type |
1 | PartyLeadershipType |
この要素が表す政党のリーダーシップのタイプ。 |
例
XML
<PartyLeadership objectId="PL123"> <EndDate>2024-02-01</EndDate> <ExternalIdentifiers> <ExternalIdentifier> <Type>other</Type> <OtherType>stable</OtherType> <Value>stable-party-leader-PL123</Value> </ExternalIdentifier> </ExternalIdentifiers> <PartyLeaderId>person-123</PartyLeaderId> <StartDate>2024-01-01</StartDate> <Type>party-leader</Type> </PartyLeadership>
JSON
"PartyLeadership": [ { "objectId": "PL123", "EndDate": "2024-02-01", "ExternalIdentifiers": { "ExternalIdentifier": [ { "Type": "other", "OtherType": "stable", "Value": "stable-party-leader-PL123" } ] }, "PartyLeaderId": "person-123", "StartDate": "2024-01-01", "Type": "party-leader" } ]