Searching

Sparkr Problems and Possibilities are searchable via Jira advanced issue search using JQL. The convention of Sparkr.IssueType.Property is used to find specific problems or possibilities.

Problems Properties

The following properties are searchable for problems:

  • Personas (Sparkr.Problem.Persona)

  • Types (Sparkr.Problem.Type)

  • Magnitude (Sparkr.Problem.Magnitude)

  • Proximity (Sparkr.Problem.Proximity)

  • Frequency (Sparkr.Problem.Frequency)

  • Success (Sparkr.Problem.Success)

  • Discovery (Sparkr.Problem.Discovery)

  • Validation (Sparkr.Problem.Validation)

  • Learnings (Sparkr.Problem.Learnings)

  • Decision (Sparkr.Problem.Decision)

For example, the following JQL expression would find all problems with the persona “Carol Customer”:

Sparkr.Problem.Persona = "Carol Customer"

Another JQL example to find all technology problems that are of high magnitude:

Sparkr.Problem.Type = "Technology" AND Sparkr.Problem.Magnitude > 0.8

Possibilities Properties

The following properties are searchable for possibilities:

  • Personas (Sparkr.Possibility.Persona)

  • Types (Sparkr.Possibility.Type)

  • Importance (Sparkr.Possibility.Importance)

  • Difficulty (Sparkr.Possibility.Difficulty)

  • Likelihood (Sparkr.Possibility.Likelihood)

  • Validation (Sparkr.Possibility.Validation)

  • Sponsor (Sparkr.Possibility.Sponsor)

  • Learnings (Sparkr.Possibility.Learnings)

  • Decision (Sparkr.Possibility.Decision)

For example, the following JQL would find all Possibilities that have been decided for “Proceed - Implement now”:

Sparkr.Possibility.Decision = “Proceed - Implement now"