A draft containing an array of draft posts.
Properties
langs
array
of stringlanguage
Optional
Indicates human language of posts primary text content.
maxLength: 3 itemspostgateEmbeddingRules
array
of union
Optional
Embedding rules for the postgates to be created when this draft is published.
maxLength: 5 itemsposts
array
of ref#draftPost
Required
Array of draft posts that compose this draft.
maxLength: 100 itemsminLength: 1 itemsthreadgateAllow
array
of union
Optional
Allow-rules for the threadgate to be created when this draft is published.
maxLength: 5 itemsView raw schema
{
"type": "object",
"required": [
"posts"
],
"properties": {
"langs": {
"type": "array",
"items": {
"type": "string",
"format": "language"
},
"maxLength": 3,
"description": "Indicates human language of posts primary text content."
},
"posts": {
"type": "array",
"items": {
"ref": "#draftPost",
"type": "ref"
},
"maxLength": 100,
"minLength": 1,
"description": "Array of draft posts that compose this draft."
},
"threadgateAllow": {
"type": "array",
"items": {
"refs": [
"app.bsky.feed.threadgate#mentionRule",
"app.bsky.feed.threadgate#followerRule",
"app.bsky.feed.threadgate#followingRule",
"app.bsky.feed.threadgate#listRule"
],
"type": "union"
},
"maxLength": 5,
"description": "Allow-rules for the threadgate to be created when this draft is published."
},
"postgateEmbeddingRules": {
"type": "array",
"items": {
"refs": [
"app.bsky.feed.postgate#disableRule"
],
"type": "union"
},
"maxLength": 5,
"description": "Embedding rules for the postgates to be created when this draft is published."
}
},
"description": "A draft containing an array of draft posts."
}