A blog post
Record Key
any
Any valid record key
Properties
attachments
array
of
ref
#attachment
Optional
Media attached to the post.
content
blob
Required
The content of the post.
maxSize: 1.0 MBlangs
array
of
string
language
Optional
Indicates human language of text content.
maxLength: 3 itemspublishedAt
string
datetime
Required
The date and time the post was published.
title
string
Required
The title of the post.
maxLength: 2000 bytesmaxGraphemes: 200 graphemesView raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"content",
"publishedAt"
],
"properties": {
"langs": {
"type": "array",
"items": {
"type": "string",
"format": "language"
},
"maxLength": 3,
"description": "Indicates human language of text content."
},
"title": {
"type": "string",
"maxLength": 2000,
"description": "The title of the post.",
"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"
},
"description": "Media attached to the post."
},
"publishedAt": {
"type": "string",
"format": "datetime",
"description": "The date and time the post was published."
}
}
},
"description": "A blog post"
}