{
"id": "beer.lizard.blog.post",
"defs": {
"main": {
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"content",
"createdAt"
],
"properties": {
"slug": {
"type": "string",
"maxLength": 500,
"description": "The lizard.beer URL slug for the post."
},
"title": {
"type": "string",
"maxLength": 3000,
"description": "The title of the blog post.",
"maxGraphemes": 300
},
"content": {
"type": "string",
"maxLength": 20000,
"description": "The body of the blog post in Markdown."
},
"summary": {
"type": "string",
"maxLength": 10000,
"description": "A short summary or excerpt of the post.",
"maxGraphemes": 1000
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the post was originally published."
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "When the post was most recently updated."
},
"canonicalUrl": {
"type": "string",
"format": "uri",
"description": "The canonical URL of the post on lizard.beer."
}
}
},
"description": "A long-form blog post published by lizard.beer."
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1
}