{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type":"object",
  "title": "example_post_created_event",
  "description": "New post created event.",
  "properties": {
    "title": {
      "description": "Title of the post.",
      "type": "string"
    },
    "content": {
      "description": "Post body, actual content.",
      "type": "string"
    },
    "is_public": {
      "description": "Indicates whether the post is public.",
      "type": "boolean"
    }
  },
  "additionalProperties": false,
  "required": [
    "title",
    "content"
  ]
}
