Atlassian · Schema

ContentBlogpost

Representation of a blogpost (content)

CodeCollaborationPlatformProductivitySoftware Development
View JSON Schema on GitHub

JSON Schema

atlassian-contentblogpost-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContentBlogpost",
  "title": "ContentBlogpost",
  "description": "Representation of a blogpost (content)",
  "allOf": [
    {
      "$ref": "#/components/schemas/Content"
    },
    {
      "required": [
        "_links",
        "metadata"
      ],
      "type": "object",
      "properties": {
        "metadata": {
          "$ref": "#/components/schemas/ContentMetadata"
        },
        "_links": {
          "$ref": "#/components/schemas/GenericLinks"
        }
      }
    }
  ]
}