OBJECT

Scenario

An estimated or analytical logical collection of higher level processes used for budgeting, analysis, plan refinement, etc.

link GraphQL Schema definition

  • type Scenario {
  • # The scenario definition for this scenario, for example yearly budget.
  • definedAs: ScenarioDefinition
  • # The beginning date/time of the scenario, often the beginning of an accounting
  • # period.
  • hasBeginning: DateTime
  • # The ending date/time of the scenario, often the end of an accounting period.
  • hasEnd: DateTime
  • id: ID!
  • # Grouping around something to create a boundary or context, used for documenting,
  • # accounting, planning.
  • inScopeOf: [AccountingScope!]
  • # An informal or formal textual identifier for a scenario. Does not imply
  • # uniqueness.
  • name: String!
  • # A textual description or comment.
  • note: String
  • # This scenario refines another scenario, often as time moves closer or for more
  • # detail.
  • refinementOf: Scenario
  • }