Details about a specific contribution including role, description, and timeframe.
Record Key
tid
Timestamp-based ID
Properties
contributionDescription
string
Optional
What the contribution concretely was.
maxLength: 10000 bytesmaxGraphemes: 1000 graphemescreatedAt
string
datetime
Required
Client-declared timestamp when this record was originally created.
endDate
string
datetime
Optional
When this contribution finished. This should be a subset of the hypercert timeframe.
role
string
Optional
Role or title of the contributor.
maxLength: 100 bytesstartDate
string
datetime
Optional
When this contribution started. This should be a subset of the hypercert 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. This should be a subset of the hypercert 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. This should be a subset of the hypercert timeframe."
},
"contributionDescription": {
"type": "string",
"maxLength": 10000,
"description": "What the contribution concretely was.",
"maxGraphemes": 1000
}
}
},
"description": "Details about a specific contribution including role, description, and timeframe."
}