INPUT_OBJECT

ClaimCreateParams

link GraphQL Schema definition

  • input ClaimCreateParams {
  • # (`Action`) Relates a claim to a verb, such as consume, produce, work, improve,
  • # etc.
  • action: ID!
  • # Reference to an agreement between agents which specifies the rules or policies
  • # or calculations which govern this claim.
  • agreedIn: URI
  • # The data on which the claim was made.
  • created: DateTime
  • # The time the claim is expected to be settled.
  • 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: IMeasure
  • # The claim 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
  • # Grouping around something to create a boundary or context, used for documenting,
  • # accounting, planning.
  • inScopeOf: [ID!]
  • # A textual description or comment.
  • note: String
  • # (`Agent`) The economic agent from whom the claim is initiated.
  • provider: ID!
  • # (`Agent`) The economic agent whom the claim is for.
  • receiver: ID!
  • # References one or more concepts in a common taxonomy or other classification
  • # scheme for purposes of categorization or grouping.
  • resourceClassifiedAs: [URI!]
  • # (`ResourceSpecification`) 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: ID
  • # The amount and unit of the economic resource counted or inventoried. This is the
  • # quantity that could be used to increment or decrement a resource, depending on
  • # the type of resource and resource effect of action.
  • resourceQuantity: IMeasure
  • # (`EconomicEvent`) The economic event which already occurred which this claim has
  • # been made against.
  • triggeredBy: ID
  • }