No description available.
tid
Timestamp-based ID
Properties
autoApproved
boolean
Optional
True if approved automatically (auto/transparent mode)
constraintEvaluation
ref
#constraintResult
Optional
No description available.
content
ref
#draftContent
Required
No description available.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
delegationRef
string
at-uri
Required
AT-URI of the social.agent.delegation.grant authorizing this draft
edits
array
of
ref
#editEntry
Optional
Append-only edit trail
publishedRef
string
at-uri
Optional
AT-URI of the published post on target network (set when status=posted)
rejectionReason
string
Optional
No description available.
maxLength: 1000 bytesstatus
string
Required
No description available.
pending, edited, approved, posted, rejectedtarget
string
did
Required
DID of the human this draft is for
updatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"target",
"delegationRef",
"content",
"status",
"createdAt"
],
"properties": {
"edits": {
"type": "array",
"items": {
"ref": "#editEntry",
"type": "ref"
},
"description": "Append-only edit trail"
},
"status": {
"type": "string",
"knownValues": [
"pending",
"edited",
"approved",
"posted",
"rejected"
]
},
"target": {
"type": "string",
"format": "did",
"description": "DID of the human this draft is for"
},
"content": {
"ref": "#draftContent",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"updatedAt": {
"type": "string",
"format": "datetime"
},
"autoApproved": {
"type": "boolean",
"description": "True if approved automatically (auto/transparent mode)"
},
"publishedRef": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the published post on target network (set when status=posted)"
},
"delegationRef": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the social.agent.delegation.grant authorizing this draft"
},
"rejectionReason": {
"type": "string",
"maxLength": 1000
},
"constraintEvaluation": {
"ref": "#constraintResult",
"type": "ref"
}
}
}
}