OBJECT

Proposal

Published requests or offers, sometimes with what is expected in return.

link GraphQL Schema definition

  • type Proposal {
  • canonicalUrl: URI
  • # The date and time the proposal was created.
  • created: DateTime
  • creator: Agent
  • # Location or area where the proposal is valid.
  • eligibleLocation: SpatialThing
  • # The beginning time of proposal publication.
  • hasBeginning: DateTime
  • # The end time of proposal publication.
  • hasEnd: DateTime
  • 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 a proposal. Does not imply
  • # uniqueness.
  • name: String
  • # A textual description or comment.
  • note: String
  • # Which Agent(s) (if any were specified) was this proposed to?
  • publishedTo: [ProposedTo!]
  • # Intent(s) published as part of to this proposal
  • publishes: [ProposedIntent!]
  • # This proposal contains unit based quantities, which can be multipied to create
  • # commitments; commonly seen in a price list or e-commerce.
  • unitBased: Boolean
  • }