{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://bbs.sb17.space/message.schema.json", "title": "Message", "description": "A Pyscii-BBS message object", "type": "object", "properties": { "id" : { "description": "The unique ID of the message entity", "type": "integer" }, "subject": { "description": "The subject of the message entity", "type": "string" }, "body": { "description": "The message body.", "type": "string" }, "date": { "description": "The date the message is posted", "type": "datetime", }, }, "required": [ "id", "subject", "body", "date" ] }