OBJECT

ValueCalculation

A calculation performed using custom formulas for a certain context.

link GraphQL Schema definition

  • type ValueCalculation {
  • # Relates a value calculation to a verb, such as consume, produce, work, improve,
  • # etc.
  • action: Action!
  • formula: String!
  • 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 an item. Does not imply uniqueness.
  • name: String
  • # A textual description or comment.
  • note: String
  • # References a concept in a common taxonomy or other classification scheme for
  • # purposes of categorization or grouping.
  • resourceClassifiedAs: [URI!]
  • # Used to filter valueCalculations to find the one that matches the event.
  • resourceConformsTo: ResourceSpecification
  • # Relates a value calculation to a verb, like action, but for the related event.
  • valueAction: Action!
  • # The resource specification the event will apply to.
  • valueResourceConformsTo: ResourceSpecification
  • # References the unit used for the event.
  • valueUnit: Unit!
  • }