{
"id": "dev.ocbwoy3.blueboard.board",
"defs": {
"main": {
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"description",
"nsfw",
"createdAt"
],
"properties": {
"nsfw": {
"type": "boolean",
"description": "Whether the board is NSFW"
},
"title": {
"type": "string",
"maxLength": 10,
"description": "The title of the board (e.g. /at/)"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "The date and time when the board was created"
},
"description": {
"type": "string",
"description": "A short description of the board",
"maxGraphemes": 30
}
}
}
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1,
"description": "This record defines a board on Blue Board (e.g. /at/, /pic/, etc.)"
}