Record representing a professional connection request or acceptance. Lives in the author's PDS.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Client-declared timestamp when this connection record was created.
origins
array
of
ref
#origin
Optional
How the connection originated. Each side can independently set their own origins.
maxLength: 5 itemssubject
string
did
Required
DID of the other party in the connection.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"createdAt"
],
"properties": {
"origins": {
"type": "array",
"items": {
"ref": "#origin",
"type": "ref"
},
"maxLength": 5,
"description": "How the connection originated. Each side can independently set their own origins."
},
"subject": {
"type": "string",
"format": "did",
"description": "DID of the other party in the connection."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this connection record was created."
}
}
},
"description": "Record representing a professional connection request or acceptance. Lives in the author's PDS."
}