INPUT_OBJECT

IntentCreateParams

link GraphQL Schema definition

  • input IntentCreateParams {
  • # (`Action`) Relates an intent to a verb, such as consume, produce, work, improve,
  • # etc.
  • action: String!
  • # Reference to an agreement between agents which specifies the rules or policies
  • # or calculations which govern this intent.
  • agreedIn: URI
  • # (`SpatialThing`) The place where an intent occurs. Usually mappable.
  • atLocation: ID
  • # The total quantity of the offered resource available.
  • availableQuantity: IMeasure
  • # 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: IMeasure
  • # The intent 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 planned beginning of the intent.
  • hasBeginning: DateTime
  • # The planned end of the intent.
  • hasEnd: DateTime
  • # The planned date/time for the intent. Can be used instead of beginning and end.
  • hasPointInTime: DateTime
  • # The uri to an image relevant to the intent, such as a photo.
  • image: URI
  • # Grouping around something to create a boundary or context, used for documenting,
  • # accounting, planning.
  • inScopeOf: [ID!]
  • # (`Process`) Defines the process to which this intent is an input.
  • inputOf: ID
  • # An informal or formal textual identifier for an intent. Does not imply
  • # uniqueness.
  • name: String
  • # A textual description or comment.
  • note: String
  • # (`Process`) Defines the process to which this intent is an output.
  • outputOf: ID
  • # (`Agent`) The economic agent from whom the intent is initiated. This implies
  • # that the intent is an offer.
  • provider: ID
  • # (`Agent`) The economic agent whom the intent is for. This implies that the
  • # intent is a request.
  • 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
  • # (`EconomicResource`) When a specific `EconomicResource` is known which can
  • # service the `Intent`, this defines that resource.
  • resourceInventoriedAs: 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
  • # Tags/Categories in a taxonomy, linked to resourceClassifiedAs:
  • # References one or more concepts in a common taxonomy or other classification
  • # scheme for purposes of categorization or grouping.
  • tags: [ID!]
  • }