Accepts or declines a collaboration invite. Stored in the collaborator's repo.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"invite",
"status",
"createdAt"
],
"properties": {
"invite": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the invite record in the owner's repo."
},
"status": {
"type": "string",
"description": "Whether the invite was accepted or declined.",
"knownValues": [
"accepted",
"declined"
]
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp of the response."
}
}
},
"description": "Accepts or declines a collaboration invite. Stored in the collaborator's repo."
}