An invitation to a Ziran workspace, written by the inviter into their own repo inside the invitee's public-policy inbox space. The inviter must already have added the invitee as a member of the workspace; this record only makes that membership discoverable. Dismissal is app-local: the record belongs to the inviter.
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
doc
string
tid
Optional
Optional rkey of a specific space.ziran.doc record to highlight.
message
string
Optional
Optional message from the inviter.
maxLength: 10000 bytesmaxGraphemes: 1000 graphemesname
string
Required
Human-readable workspace name, so the invite renders without a credential mint.
maxLength: 2000 bytesmaxGraphemes: 200 graphemesspace
string
at-uri
Required
The workspace space the invitee has been added to.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"space",
"name",
"createdAt"
],
"properties": {
"doc": {
"type": "string",
"format": "tid",
"description": "Optional rkey of a specific space.ziran.doc record to highlight."
},
"name": {
"type": "string",
"maxLength": 2000,
"description": "Human-readable workspace name, so the invite renders without a credential mint.",
"maxGraphemes": 200
},
"space": {
"type": "string",
"format": "at-uri",
"description": "The workspace space the invitee has been added to."
},
"message": {
"type": "string",
"maxLength": 10000,
"description": "Optional message from the inviter.",
"maxGraphemes": 1000
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "An invitation to a Ziran workspace, written by the inviter into their own repo inside the invitee's public-policy inbox space. The inviter must already have added the invitee as a member of the workspace; this record only makes that membership discoverable. Dismissal is app-local: the record belongs to the inviter."
}