No description available.
Record Key
tid
Timestamp-based ID
Properties
constraints
ref
#delegationConstraints
Optional
No description available.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
expiresAt
string
datetime
Optional
Delegation is invalid after this time
grantee
string
did
Required
DID of the agent receiving delegation
mode
string
Required
Approval mode
Known values:
draft, auto, transparentscope
array
of
string
Required
Allowed action NSIDs (e.g. 'app.bsky.feed.post')
targetNetwork
string
Optional
Target network. Defaults to 'bluesky'.
Known values:
bluesky, mastodon, x, emailView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"grantee",
"scope",
"mode",
"createdAt"
],
"properties": {
"mode": {
"type": "string",
"description": "Approval mode",
"knownValues": [
"draft",
"auto",
"transparent"
]
},
"scope": {
"type": "array",
"items": {
"type": "string",
"maxLength": 256
},
"maxItems": 20,
"minItems": 1,
"description": "Allowed action NSIDs (e.g. 'app.bsky.feed.post')"
},
"grantee": {
"type": "string",
"format": "did",
"description": "DID of the agent receiving delegation"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"expiresAt": {
"type": "string",
"format": "datetime",
"description": "Delegation is invalid after this time"
},
"constraints": {
"ref": "#delegationConstraints",
"type": "ref"
},
"targetNetwork": {
"type": "string",
"description": "Target network. Defaults to 'bluesky'.",
"knownValues": [
"bluesky",
"mastodon",
"x",
"email"
]
}
}
}
}