No description available.
Record Key
any
Any valid record key
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
issue
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
issueId
string
Required
No description available.
maxLength: 36 bytesminLength: 36 bytesnumber
integer
Required
No description available.
minimum: 1maximum: 9007199254740991repositoryId
string
Required
No description available.
maxLength: 36 bytesminLength: 36 bytesView raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"repositoryId",
"issueId",
"number",
"issue",
"createdAt"
],
"properties": {
"issue": {
"type": "string",
"format": "at-uri"
},
"number": {
"type": "integer",
"maximum": 9007199254740991,
"minimum": 1
},
"issueId": {
"type": "string",
"maxLength": 36,
"minLength": 36
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"repositoryId": {
"type": "string",
"maxLength": 36,
"minLength": 36
}
}
}
}