OBJECT
Claim
A claim for a future economic event(s) in reciprocity for an economic event that already occurred. For example, a claim for payment for goods received.
link GraphQL Schema definition
- type Claim {
- # Relates a claim to a verb, such as consume, produce, work, improve, etc.
- : Action!
- # Reference to an agreement between agents which specifies the rules or policies
- # or calculations which govern this claim.
- : URI
- # Specifies if a calculation will be applied to this claim when an economic event
- # is logged.
- : ValueCalculation
- # The data on which the claim was made.
- : DateTime
- # The time the claim is expected to be settled.
- : 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.
- : Measure
- # 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.
- : Boolean
- : ID!
- # Grouping around something to create a boundary or context, used for documenting,
- # accounting, planning.
- : [AccountingScope!]
- # A textual description or comment.
- : String
- # The economic agent from whom the claim is initiated.
- : Agent!
- # The economic agent whom the claim is for.
- : Agent!
- # References one or more concepts in a common taxonomy or other classification
- # scheme for purposes of categorization or grouping.
- : [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.
- : ResourceSpecification
- # The amount and unit of the economic resource counted or inventoried.
- : Measure
- # The economic event which already occurred which this claim has been made
- # against.
- : EconomicEvent!
- }