A blagh post
Record Key
any
Any valid record key
Properties
attachments
array
of
ref
#attachment
Optional
No description provided.
content
blob
Optional
The content of the post
maxSize: 1.0 MBlangs
array
of
string
language
Optional
Indicates human language of text content.
maxLength: 3 bytespublishedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
title
string
Optional
No description provided.
maxLength: 2000 bytesmaxGraphemes: 200 graphemesView raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"properties": {
"langs": {
"type": "array",
"items": {
"type": "string",
"format": "language"
},
"maxLength": 3,
"description": "Indicates human language of text content."
},
"title": {
"type": "string",
"maxLength": 2000,
"maxGraphemes": 200
},
"content": {
"type": "blob",
"accept": [
"text/plain",
"text/html",
"text/markdown"
],
"maxSize": 1000000,
"description": "The content of the post"
},
"attachments": {
"type": "array",
"items": {
"ref": "#attachment",
"type": "ref"
}
},
"publishedAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A blagh post"
}