[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-10 UTC."],[[["\u003cp\u003eThe \u003ccode\u003ePartyLeadership\u003c/code\u003e entity defines various leadership roles within a political \u003ccode\u003eParty\u003c/code\u003e, including start and end dates, and the associated \u003ccode\u003ePerson\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eIt's the preferred method for specifying leadership information, replacing the use of \u003ccode\u003eExternalIdentifiers\u003c/code\u003e attached to \u003ccode\u003eParty\u003c/code\u003e entities.\u003c/p\u003e\n"],["\u003cp\u003eEach \u003ccode\u003ePartyLeadership\u003c/code\u003e element requires a unique \u003ccode\u003eobjectId\u003c/code\u003e, a \u003ccode\u003ePartyLeaderId\u003c/code\u003e referencing the individual, and a \u003ccode\u003eType\u003c/code\u003e specifying the leadership role.\u003c/p\u003e\n"],["\u003cp\u003eA stable identifier within \u003ccode\u003eExternalIdentifiers\u003c/code\u003e is mandatory for each \u003ccode\u003ePartyLeadership\u003c/code\u003e entry.\u003c/p\u003e\n"],["\u003cp\u003eWhile \u003ccode\u003eStartDate\u003c/code\u003e and \u003ccode\u003eEndDate\u003c/code\u003e are optional, they provide temporal context for the leadership role when available.\u003c/p\u003e\n"]]],[],null,["# PartyLeadership\n\n| **Note:** This entity is the same for all feed types.\n\nUse the `PartyLeadership` entity to define information about a various\n[types](/civics-data/reference/party-leadership-type) of leadership for a\n[`Party`](/civics-data/reference/party).\n| **Important:** Some of this information was formerly specified in [`ExternalIdentifiers`](/civics-data/reference/external-identifier) attached to `Party` entities. `PartyLeadership` is the new way to do this and should be preferred whenever possible.\n\nAttributes\n----------\n\nThe following table describes the attributes for the `PartyLeadership` element:\n\n| Attribute | Required? | Type | Description |\n|------------|-----------|------|-------------------------------------------------------------------------------------|\n| `objectId` | Required | `ID` | Unique internal identifier that's used by other elements to reference this element. |\n\nElements\n--------\n\nThe following table describes the elements for `PartyLeadership`:\n\n| Element | Multiplicity | Type | Description |\n|-----------------------|--------------|-----------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|\n| `EndDate` | 0 or 1 | `PartialDate` | End date of the person's time in the party leadership role. Should be left unspecified if the leadership tenure is ongoing. |\n| `ExternalIdentifiers` | 1 | [`ExternalIdentifiers`](/civics-data/reference/external-identifier) | Associates an ID with the party leadership. A [stable identifier](/civics-data/guides/stable-identifiers) is required. |\n| `PartyLeaderId` | 1 | `IDREF` | Unique identifier for the [`Person`](/civics-data/reference/person) who holds the party leadership role. |\n| `StartDate` | 0 or 1 | `PartialDate` | Start date of the person's time in the party leadership role. Should be left unspecified if the date is unknown. |\n| `Type` | 1 | [`PartyLeadershipType`](/civics-data/reference/party-leadership-type) | The type of party leadership this element represents. |\n\nExamples\n--------\n\n### XML\n\n```xml\n \u003cPartyLeadership objectId=\"PL123\"\u003e\n \u003cEndDate\u003e2024-02-01\u003c/EndDate\u003e\n \u003cExternalIdentifiers\u003e\n \u003cExternalIdentifier\u003e\n \u003cType\u003eother\u003c/Type\u003e\n \u003cOtherType\u003estable\u003c/OtherType\u003e\n \u003cValue\u003estable-party-leader-PL123\u003c/Value\u003e\n \u003c/ExternalIdentifier\u003e\n \u003c/ExternalIdentifiers\u003e\n \u003cPartyLeaderId\u003eperson-123\u003c/PartyLeaderId\u003e\n \u003cStartDate\u003e2024-01-01\u003c/StartDate\u003e\n \u003cType\u003eparty-leader\u003c/Type\u003e\n \u003c/PartyLeadership\u003e\n```\n\n### JSON\n\n```json\n \"PartyLeadership\": [\n {\n \"objectId\": \"PL123\",\n \"EndDate\": \"2024-02-01\",\n \"ExternalIdentifiers\": {\n \"ExternalIdentifier\": [\n {\n \"Type\": \"other\",\n \"OtherType\": \"stable\",\n \"Value\": \"stable-party-leader-PL123\"\n }\n ]\n },\n \"PartyLeaderId\": \"person-123\",\n \"StartDate\": \"2024-01-01\",\n \"Type\": \"party-leader\"\n }\n ]\n```"]]