Skip to content

place.stream.key

Lexicon Version: 1

Type: record

Record linking an atproto identity with a stream signing key

Record Key: tid

Record Properties:

NameTypeReq’dDescriptionConstraints
signingKeystringThe did:key signing key for the stream.Min Length: 57
Max Length: 57
createdAtstringClient-declared timestamp when this key was created.Format: datetime

{
"lexicon": 1,
"id": "place.stream.key",
"defs": {
"main": {
"type": "record",
"description": "Record linking an atproto identity with a stream signing key",
"key": "tid",
"record": {
"type": "object",
"required": ["signingKey", "createdAt"],
"properties": {
"signingKey": {
"type": "string",
"maxLength": 57,
"minLength": 57,
"description": "The did:key signing key for the stream."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this key was created."
}
}
}
}
}
}