OBJECT

Commitment

A planned economic flow that has been promised by an agent to another agent.

link GraphQL Schema definition

  • type Commitment {
  • # Relates a commitment to a verb, such as consume, produce, work, improve, etc.
  • action: Action!
  • # Reference to an agreement between agents which specifies the rules or policies
  • # or calculations which govern this commitment.
  • agreedIn: URI
  • # The place where a commitment occurs. Usually mappable.
  • atLocation: SpatialThing
  • # This commitment is part of the exchange agreement.
  • clauseOf: Agreement
  • # The creation time of the commitment.
  • created: DateTime
  • # The commitment can be safely deleted, has no dependent information.
  • deletable: Boolean
  • # The time something is expected to be complete.
  • due: DateTime
  • # The amount and unit of the work or use or citation effort-based action. This is
  • # often a time duration, but also could be cycle counts or other measures of
  • # effort or usefulness.
  • effortQuantity: Measure
  • # The commitment is complete or not. This is irrespective of if the original goal
  • # has been met, and indicates that no more will be done.
  • finished: Boolean
  • # The economic event which completely or partially fulfills a commitment.
  • fulfilledBy: [Fulfillment!]
  • # The planned beginning of the commitment.
  • hasBeginning: DateTime
  • # The planned end of the commitment.
  • hasEnd: DateTime
  • # The planned date/time for the commitment. Can be used instead of beginning and
  • # end.
  • hasPointInTime: DateTime
  • id: ID!
  • # Grouping around something to create a boundary or context, used for documenting,
  • # accounting, planning.
  • inScopeOf: [AccountingScope!]
  • # Represents a desired deliverable expected from this plan.
  • independentDemandOf: Plan
  • # Defines the process to which this commitment is an input.
  • inputOf: Process
  • involvedAgents: [Agent!]
  • # A textual description or comment.
  • note: String
  • # Defines the process for which this commitment is an output.
  • outputOf: Process
  • # The economic agent from whom the commitment is initiated.
  • provider: Agent!
  • # The economic agent whom the commitment is for.
  • receiver: Agent!
  • # References one or more concepts in a common taxonomy or other classification
  • # scheme for purposes of categorization or grouping.
  • resourceClassifiedAs: [URI!]
  • # The primary resource specification or definition of an existing or potential
  • # economic resource. A resource will have only one, as this specifies exactly what
  • # the resource is.
  • resourceConformsTo: ResourceSpecification
  • # Exact economic resource involved in the commitment.
  • resourceInventoriedAs: EconomicResource
  • # The amount and unit of the economic resource counted or inventoried.
  • resourceQuantity: Measure
  • # An intent satisfied fully or partially by an economic event or commitment.
  • satisfies: [Satisfaction!]
  • }