Gifts & Projects

How do we represent donations, or resource commitments and subsequently their delivery?

Here are a few scenarios:

  1. I donate time (or money or other resources) to someone.

  2. Someone makes a request, possibly in trade.

  3. I offer to give resources at some future date, possibly after conditions are met.

  4. I delivered those resources.

  5. Someone confirms that I delivered. In other words, they agree that I followed through on my commitment.

Here are the verbs used for assertions – many recorded in the mobile app by default.

A diagram showing successive relationships between these objects is here.

  • “Join” shows attendance or membership in a group. Technically: schema.org “JoinAction”

  • “Give” shows transfer of ownership. Items like money and time would be included as the ‘object’. Note that a Give can be part of a Trade, but if there is no link to a Trade or a reciprocal action then it is assumed to be one-sided (at least, in our system). Technically: schema.org “GiveAction”

Properties of a Give at Endorser.ch

Name

Description

@context

always the schema: “https://schema.org

@type

always the type: “GiveAction”

fulfills

optional Offer or DonateAction or GiveAction or TradeAction or PlanAction or array of them; see “fulfills” table below (This is not currently part of schema.org specs.)

identifier

optional identifier for this action, which should be a full URI

object

optional item or service or array of them; see Give “object” table below

description

optional free-form description of what is given

agent

optional { identifier: “DID” } for the Person or Organization who gave (which is assumed to be issuer if not supplied)

provider

optional [{ “@type”: “…”, identifier: “…” }] array of Person or Organization records who helped make this possible

recipient

optional { identifier: “DID” } for receiving individual or organization if this is directly to an entity (as opposed to being part of an activity, which belong in things linkde by “fulfills”)

Properties of a Give “object” or Offer “includesObject” at Endorser.ch

Name

Description

@context

the schema “https://schema.org” (which is optional if the enclosing object already has it)

@type

the type of this item, eg “TypeAndQuantityNode”

amountOfThisGood

required numeric amount

unitCode

required unit of amount, eg “HUR” for hour, “USD” for US Dollar, “BTC” for Bitcoin. As specified, this follows UN/CEFACT codes, particularly for time (Recommendation No. 20 - Revision 17 (Annexes I to III)) and for currency (ISO-4217).

Properties of a Give “fullfills” at Endorser.ch

Name

Description

@context

the schema (which is optional if the enclosing object already has it)

@type

recommended: type of the item being fulfilled, eg “Offer” or “DonateAction” or “TradeAction” or “PlanAction”

identifier

optional reference to a previous “Offer” or “DonateAction” or “TradeAction” or “PlanAction” claim, which should be a full URI (If there is no previous action, the type (eg. “DonateAction”) alone can be helpful detail.)

Example:

{
  "@context": "https://schema.org",
  "@type": "GiveAction",
  "description": "Made desserts for talent show -- thanks!",
  "object": {
    "@type": "TypeAndQuantityNode",
    "amountOfThisGood": 1,
    "unitCode": "HUR"
  },
  "fulfills": {
    "@type": "Offer",
    "identifier": "https://endorser.ch/entity/ABCDEFGHIJKLMNOPQRSTUVWXYZ"
  }
}

There are some similar concepts at schema.org:

  • “Donate” is an act of giving a gift, typically toward an entity rather than a project (as opposed to a “Grant” for a goal). It is similar to “Give” but used to explicitly record that these is no reciprocation; the Endorser service recognizes that a GiveAction is a donation if a DonateAction is sent in the “fulfills” field (and if there is not TradeAction). Technically: schema.org “DonateAction”

  • “Grant” represents donations toward a goal or project (as opposed to “Donate” to an entity for whatever purpose they choose). This is not used by the Endorser service, preferring to keep a simple “Donate” for all this kind of activity with a “fulfills” link if attached to a wider Plan or Project. (Note that this isn’t yet fully accepted at schema.org.) Technically: schema.org “Grant”

  • “Loan Or Credit” represents temporary transfer of money. Technically: schema.org “LoanOrCredit”

  • “Plan” proposes some activity to be executed; it typically aims at a particular time frame. “Offer” is different because the object in question is specific amounts of money or time; this is useful for advertising and proposing an initiative for others to join. “Project” is different because it targets an outcome; this focuses on a particular activity rather than a goal. Technically: schema.org “PlanAction”

Properties of a Plan at Endorser.ch

Name

Description

@context

always the schema: “https://schema.org

@type

always the type: “PlanAction”

agent

optional { identifier: “DID” } for the proposing Person or Organization

description

optional free-form explanation

endTime

optional date when the planned activity will end

identifier

optional identifier for this plan, which should be a full URI

image

optional image URL

name

optional short name

startTime

optional date when the planned activity will start

url

optional external URL for the project

Example:

{
  "@context": "https://schema.org",
  "@type": "PlanAction",
  "agent": { "identifier": "did:..." },
  "identifier": "...",
  "name": "KickStarter for Time",
  "description": "Deliver an app that...",
  "image": "https://live.staticflickr.com/2853/9194403742_c8297b965b_b.jpg",
  "startTime": "2022-07",
  "endTime": "2023-03"
}
  • “Project” is for a large-scale initiative, typically associated with an organization for some long-term benefit. “Plan” is different because it aims at a more specific action at a point in time. Technically: schema.org “Project” proposal

  • “Offer” proposes a transfer or service, often with conditions or a price. When the proposal is fulfilled, there is a resulting “Give” or “Donate” or more complicated transfer such as “Trade”. Technically: schema.org “Offer” (The opposite is a “Demand”.)

Properties of an Offer at Endorser.ch

Name

Description

@context

always the schema: “https://schema.org

@type

always the type: “Offer”

actionAccessibilityRequirement

optional declaration of conditions for this offer; see “ActionAccessSpecification” table below (This is not currently part of schema.org specs on Offer.)

availabilityEnds

optional time when this offer stops being available

availabilityStarts

optional time when this offer becomes available

description

optional free-form explanation of conditions

identifier

optional identifier for this offer, which should be a full URI

includesObject

optional specific “TypeAndQuantityNode”; see “includesObject” table above

itemOffered

optional description of the item or service; see “itemOffered” table below

offeredBy

optional (but recommended) { identifier: “…” } individual or org doing the offer (which is assumed to be the issuer if not supplied)

recipient

optional { identifier: “…” } individual or organization if this is directly to an entity (as opposed to being part of an activity or project)

Properties of an Offer “itemOffered” at Endorser.ch

Name

Description

@context

optional schema “https://schema.org” (which is assumed if the enclosing object already has it)

@type

optional type of this item, eg “CreativeWork” or “Service” (but recommended to plan future expansion)

description

optional free-form explanation of deliverable or work contribution

isPartOf

optional reference to a bigger activity (AKA “PlanAction”) or “Project” (This is not currently part of schema.org specs on all “itemOffered” objects.)

Properties of an Offer “actionAccessibilityRequirement” property at Endorser.ch

Name

Description

@context

optional schema “https://schema.org” (which is assumed if the enclosing object already has it)

@type

optional type of this item (which is assumed to be “ActionAccessSpecification”)

requiresOffers

optional number telling how many other offers should be committed before this offer is valid (This is not currently part of schema.org specs.)

requiresOffersTotal

optional total “TypeAndQuantityNode” in other offers that should be committed before this offer is valid (This is not currently part of schema.org specs.)

Example:

{
  "@context": "https://schema.org",
  "@type": "Offer",
  "offeredBy": "did:ethr:0x111c4aCD2B13e26137221AC86c2c23730c9A315A",
  "availabilityStarts": "2022-07",
  "availabilityEnds": "2023-03",
  "includesObject": { "amountOfThisGood": 2, "unitCode": "HUR" },
  "itemOffered": {
    "@type": "CreativeWork",
    "description": "Time for coding on...",
    "isPartOf": { "@type": "PlanAction", "identifier": "..." }
  },
  "actionAccessibilityRequirement": {
    "requiresOffers": 3,
    "requiresOffersTotal": { "amountOfThisGood": 5, "unitCode": "HUR" }
  }
}

Note that the “includesObject” and “requiresOffersTotal” don’t include an “@type” of “TypeAndQuantityNode” because that is what our software will consider the default.

  • “Accept” signals that someone accepts some contract or pledge. (This could be used to state alignment to terms for a later transfer. This is different from “Agree” because it signals a commitment, eg. to a policy or proposal.) Technically: schema.org “AcceptAction”

    • There is also a “Take” to show that something has been received or redeemed, which is the opposite of “Give”; however, in these applications, a recipient shows fulfilment of a previous “Give” action with an “AgreeAction” where the ‘object’ has the originating “Give” action (or ‘identifier’). Technically: schema.org “TakeAction”.

    • There is also “Send” and “Receive” to signify that an ‘object’ has been transported, but they don’t indicate any transfer of ownership (and are not used in these applications).

  • “Trade” is an exchange action. Technically: schema.org “TradeAction”

  • “Agree” shows that the user concurs with some other assertion. This is the preferred way for any counterparties to confirm that someone’s claim is true. Technically: schema.org “AgreeAction”

Hopefully it’s clear how to apply those assertions to the numbered scenarios above:

  1. “Donate” an ‘object’ to a ‘recipient’. For promises, “Offer” an ‘itemOffered’… time or money or even a “Service”.

    • One could also “Grant”, though that is new to the schema.

  2. “Ask” for ‘object’, or “Demand” some help or resource ‘itemOffered’.

  3. “Offer” some help or resource, eg. some ‘eligibleQuantity’ of ‘itemOffered’ at a ‘price’ when ‘availabilityStarts’.

    • One could also “LoanOrCredit” some ‘amount’ of ‘currency’ for ‘loanTerm’.

  4. “Give” to say that a transfer is done. Senders use this to claim that they transfer ownership to someone else.

  5. “Agree” to confirm delivery of a “GiveAction” which is included as the ‘object’. This is how recipients signal they’ve received whatever was given or donated.

In our Endorser app, you can try many of these such as Time or Money Donations.

Other References

  • Besides schema.org, there are other formal ontologies that are a close fit and may even be useful as shared projects evolve. (We may also find it useful to create our own.)

    • For Project schemas, there are some other choices beyond Schema.org’s “PlanAction” (and the upcoming “Project”) and we anticipate getting more specific over time and using one of these. For now, we’re focused on getting the mechanics of Offer & Give correct, but there are these when we expand:

    • When it comes to conditions for an Offer, we chose to add “actionAccessibilityRequirement” with new properties “requiresOffers” & “requiresOffersTotal”. There were other options:

    • For delivery of an offer, besides Schema.org’s “GiveAction”, there are the following:

      • For reference to the object being given, Thing objects have a “potentialAction” property (but that wouldn’t be used to reference the GiveAction because the Offer is not the object; rather, the time or money is the object).

      • For the reference back to the Offer, there are “referencesOrder” and “partOfInvoice” (but those are specific to a listing on an invoice to a customer).

    • Linked Online Vocabularies allow searching through many ontologies.

  • Units for currencies are described in multiple places at schema.org:

    We’ve chosen HUR from UN/CEFACT for the length of time. Time units can be a single string in ISO 8601 format for schema.org but we don’t use that (yet).

  • Some have tackled these problems with tokens; that’s a valid approach as well, with upsides of broader markets but downsides of complicated issuance and less private data.

    • Ying is building an app with a currency built in.

    • Let’s B More has a search through their offerings.

  • There are signing technologies for cash without a central blockchain: “Untraceable Off-line Cash in Wallets with Observers” by Stefan Brands shows one way… this “note on blind signature schemes” has other links but most are broken. I believe there is more recent work as well but it’s hard to find.