Destiny.Definitions.DestinyNodeStepDefinition

This defines the properties of a "Talent Node Step". When you see a talent node in game, the actual visible properties that you see (its icon, description, the perks and stats it provides) are not provided by the Node itself, but rather by the currently active Step on the node.

When a Talent Node is activated, the currently active step's benefits are conferred upon the item and character.

The currently active step on talent nodes are determined when an item is first instantiated. Sometimes it is random, sometimes it is more deterministic (particularly when a node has only a single step).

Note that, when dealing with Talent Node Steps, you must ensure that you have the latest version of content. stepIndex and nodeStepHash - two ways of identifying the step within a node - are both content version dependent, and thus are subject to change between content updates.
Type: object
Object Properties
displayProperties
These are the display properties actually used to render the Talent Node. The currently active step's displayProperties are shown.
Type: object
stepIndex
The index of this step in the list of Steps on the Talent Node.

Unfortunately, this is the closest thing we have to an identifier for the Step: steps are not provided a content version agnostic identifier. This means that, when you are dealing with talent nodes, you will need to first ensure that you have the latest version of content.
Type: int32
nodeStepHash
The hash of this node step. Unfortunately, while it can be used to uniquely identify the step within a node, it is also content version dependent and should not be relied on without ensuring you have the latest vesion of content.
Type: uint32
interactionDescription
If you can interact with this node in some way, this is the localized description of that interaction.
Type: string
damageType
An enum representing a damage type granted by activating this step, if any.
Type: int32
damageTypeHash
Nullable Mapped to Definition
If the step provides a damage type, this will be the hash identifier used to look up the damage type's DestinyDamageTypeDefinition.
Type: uint32
Mapped to Manifest Database Definition: Destiny.Definitions.DestinyDamageTypeDefinition
activationRequirement
If the step has requirements for activation (they almost always do, if nothing else than for the Talent Grid's Progression to have reached a certain level), they will be defined here.
Type: object
canActivateNextStep
There was a time when talent nodes could be activated multiple times, and the effects of subsequent Steps would be compounded on each other, essentially "upgrading" the node. We have moved away from this, but theoretically the capability still exists.

I continue to return this in case it is used in the future: if true and this step is the current step in the node, you are allowed to activate the node a second time to receive the benefits of the next step in the node, which will then become the active step.
Type: boolean
nextStepIndex
The stepIndex of the next step in the talent node, or -1 if this is the last step or if the next step to be chosen is random.

This doesn't really matter anymore unless canActivateNextStep begins to be used again.
Type: int32
isNextStepRandom
If true, the next step to be chosen is random, and if you're allowed to activate the next step. (if canActivateNextStep = true)
Type: boolean
perkHashes
Mapped to Definition
The list of hash identifiers for Perks (DestinySandboxPerkDefinition) that are applied when this step is active. Perks provide a variety of benefits and modifications - examine DestinySandboxPerkDefinition to learn more.
Type: array
Array Contents: uint32
Mapped to Manifest Database Definition: Destiny.Definitions.DestinySandboxPerkDefinition
startProgressionBarAtProgress
When the Talent Grid's progression reaches this value, the circular "progress bar" that surrounds the talent node should be shown.

This also indicates the lower bound of said progress bar, with the upper bound being the progress required to reach activationRequirement.gridLevel. (at some point I should precalculate the upper bound and put it in the definition to save people time)
Type: int32
statHashes
Mapped to Definition
When the step provides stat benefits on the item or character, this is the list of hash identifiers for stats (DestinyStatDefinition) that are provided.
Type: array
Array Contents: uint32
Mapped to Manifest Database Definition: Destiny.Definitions.DestinyStatDefinition
affectsQuality
If this is true, the step affects the item's Quality in some way. See DestinyInventoryItemDefinition for more information about the meaning of Quality. I already made a joke about Zen and the Art of Motorcycle Maintenance elsewhere in the documentation, so I will avoid doing it again. Oops too late
Type: boolean
stepGroups
In Destiny 1, the Armory's Perk Filtering was driven by a concept of TalentNodeStepGroups: categorizations of talent nodes based on their functionality. While the Armory isn't a BNet-facing thing for now, and the new Armory will need to account for Sockets rather than Talent Nodes, this categorization capability feels useful enough to still keep around.
Type: object
affectsLevel
If true, this step can affect the level of the item. See DestinyInventoryItemDefintion for more information about item levels and their effect on stats.
Type: boolean
socketReplacements
If this step is activated, this will be a list of information used to replace socket items with new Plugs. See DestinyInventoryItemDefinition for more information about sockets and plugs.
Type: array