org.hypercerts.claim.contribution

lexicon.store View official

Documentation

Details about a specific contribution including role, description, and timeframe.

main record

Details about a specific contribution including role, description, and timeframe.

Record Key tid Timestamp-based ID

Properties

contributionDescription string Optional

Description of what the contribution concretely involved.

maxLength: 10000 bytesmaxGraphemes: 1000 graphemes
createdAt string datetime Required

Client-declared timestamp when this record was originally created.

endDate string datetime Optional

When this contribution finished. Should fall within the parent hypercert's timeframe.

role string Optional

Role or title of the contributor.

maxLength: 100 bytes
startDate string datetime Optional

When this contribution started. Should fall within the parent hypercert's timeframe.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "createdAt"
    ],
    "properties": {
      "role": {
        "type": "string",
        "maxLength": 100,
        "description": "Role or title of the contributor."
      },
      "endDate": {
        "type": "string",
        "format": "datetime",
        "description": "When this contribution finished. Should fall within the parent hypercert's timeframe."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Client-declared timestamp when this record was originally created."
      },
      "startDate": {
        "type": "string",
        "format": "datetime",
        "description": "When this contribution started. Should fall within the parent hypercert's timeframe."
      },
      "contributionDescription": {
        "type": "string",
        "maxLength": 10000,
        "description": "Description of what the contribution concretely involved.",
        "maxGraphemes": 1000
      }
    }
  },
  "description": "Details about a specific contribution including role, description, and timeframe."
}

Lexicon Garden

@