No description available.
tid
Timestamp-based ID
Properties
blockId
string
at-uri
Optional
The URI of the block record that created this block, omitted if this is the record that created the block
collaborators
array
of
string
did
Optional
A list of dids that are collaborators on the block
createdAt
string
datetime
Required
The ISO 8601 datetime the block was created
inline
unknown
Optional
Map of inline blocks, keyed by inline-tid. Each value is a `page.corvus.block#main` record body (the inline block's `ops`/`createdAt`/`inline`). Block-ids address inline blocks as `<this-record-uri>#inline/<inline-tid>`, with deeper nesting appended as `/inline/<inline-tid>` per level. Modeled as `unknown` because lexicons don't yet support map types; the runtime shape is `{ [inlineTid: string]: page.corvus.block#main }`.
ops
array
of
union
Required
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"ops",
"createdAt"
],
"properties": {
"ops": {
"type": "array",
"items": {
"refs": [
"#create",
"#insert",
"#delete",
"#set",
"#increment",
"#add",
"#remove"
],
"type": "union",
"closed": true
},
"description": "The edits that have been applied to this block"
},
"inline": {
"type": "unknown",
"description": "Map of inline blocks, keyed by inline-tid. Each value is a `page.corvus.block#main` record body (the inline block's `ops`/`createdAt`/`inline`). Block-ids address inline blocks as `<this-record-uri>#inline/<inline-tid>`, with deeper nesting appended as `/inline/<inline-tid>` per level. Modeled as `unknown` because lexicons don't yet support map types; the runtime shape is `{ [inlineTid: string]: page.corvus.block#main }`."
},
"blockId": {
"type": "string",
"format": "at-uri",
"description": "The URI of the block record that created this block, omitted if this is the record that created the block"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "The ISO 8601 datetime the block was created"
},
"collaborators": {
"type": "array",
"items": {
"type": "string",
"format": "did"
},
"description": "A list of dids that are collaborators on the block"
}
},
"description": "A block record containing the edits that have been applied to this block by the owning user."
}
}