place.stream.key
Lexicon Version: 1
Definitions
Section titled “Definitions”Type: record
Record linking an atproto identity with a stream signing key
Record Key: tid
Record Properties:
Name | Type | Req’d | Description | Constraints |
---|---|---|---|---|
signingKey | string | ✅ | The did:key signing key for the stream. | Min Length: 57 Max Length: 57 |
createdAt | string | ✅ | Client-declared timestamp when this key was created. | Format: datetime |
Lexicon Source
Section titled “Lexicon Source”{ "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." } } } } }}